$(document).ready(function(){
	$("#sidebar img").easyTooltip();
	$("#footer-content img").easyTooltip();
	$("#product-footer .content a").easyTooltip();
	$(".title").easyTooltip();
	
	$('.main-image').nivoSlider({
		effect:'fade',
		slices:1,
		animSpeed:300,
		pauseTime:6000,
		directionNav:false, //Next & Prev
		directionNavHide:false, //Only show on hover
		controlNav:true, //1,2,3...
		controlNavThumbs:false //Use thumbnails for Control Nav
	});				

	
	$('.expand-panel').click(function(e){
		e.preventDefault();
		$(this).parent().find('.slide-entry').slideToggle();		
	});
	
	$('.expand-arrow').click(function(e){
		e.preventDefault();
		$(this).parent().find('.slide-entry').slideToggle();		
	});
	
	$(".expand-panel").toggle(function(){
		$(this).parent().find('.expand-arrow').addClass("expanded");
		}, function() {
		$(this).parent().find('.expand-arrow').removeClass("expanded");
	});
	
	$(".expand-arrow").toggle(function(){
		$(this).addClass("expanded");
		}, function() {
		$(this).removeClass("expanded");
	});			

})
