﻿//hover btn rollover effect
$('.hoverBtn').live('mouseover', function () { $(this).attr('src', $(this).attr('src').replace('_off', '_on')); });
$('.hoverBtn').live('mouseout', function () { $(this).attr('src', $(this).attr('src').replace('_on', '_off')); });

$(document).ready(function(){
	$(".hoverStyle").hover(function() {	
	    
	    $(".hover-containerMain").css('display', 'none');
	    
	    $(".hover-body").text($(this).next("em").text());
	    
	    $(".hover-containerMain").animate({height: 'toggle', top: $(this).offset().top + 25, left: $(this).offset().left}, "slow");
	    
	}, function() {
	  $(".hover-containerMain").animate({height: "toggle", top: $(this).offset().top + 25, left: $(this).offset().left}, "slow");
	});
});


$(document).ready(function(){
	$(".hoverStyleWhite").hover(function() {
	    $(".hover-containerMain").css('display', 'none');
	
	    $(".hover-body").text($(this).next("em").text());
	    
	    $(".hover-containerMain").animate({height: 'toggle', top: $(this).offset().top + 25, left: $(this).offset().left}, "slow");
	    
	}, function() {
	  $(".hover-containerMain").animate({height: "toggle", top: $(this).offset().top + 25, left: $(this).offset().left}, "slow");
	});
});

