/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function additional_info_show(collapse_text,expand_text){
    if ($("#additional_info").is(":hidden")) {
        $("#additional_info").slideDown("slow");
        $("#show_hide_adi").text(collapse_text);


    } else {
        $("#additional_info").slideUp("slow");
        $("#show_hide_adi").text(expand_text);
    }
}


$(document).ready(function(){

//Larger thumbnail preview

$(".hoverImage").hover(function() {
	$(this).css({'z-index' : '10'});
	$(this).addClass("hover").stop()
		.animate({
			marginTop: '-110px',
			marginLeft: '-110px',
			top: '50%',
			left: '0',
			width: '300px',
			height: '200px',
			padding: '0px'
		}, 200);

	} , function() {
	$(this).css({'z-index' : '0'});
	$(this).removeClass("hover").stop()
		.animate({
			marginTop: '19px',
			marginLeft: '5px',
			top: '0',
			left: '0',
			width: '60px',
			height: '45px',
			padding: '0px'
		}, 400);
});


});

