//idTabs slideshow
$(document).ready(function() {
	$("#homepage-slideshow-wrapper").tabs({ fx: { opacity: 'toggle' } }, {selected: 4}).tabs("rotate", 5000, true);
	$("#homepage-slideshow-wrapper").hover(
		function() {
			$("#homepage-slideshow-wrapper").tabs("rotate",0,true);
		},  
		function() {
			$("#homepage-slideshow-wrapper").tabs("rotate",5000,true);
		}  
	);
});


jQuery(document).ready(function() {

    //go to top
    $('a.top').click(function(){
         $('html, body').animate({scrollTop: '0px'}, 1000);
         return false;
    });
    
    //alternate row color for pricing table
    $("table.price tbody tr:odd").addClass("odd");
    
   	/* Adding a colortip to any tag with a title attribute: */
	$('a.tooltip[title]').colorTip({color:'yellow'});
    
});
