
// 'stacks' is the Stacks global object.
// All of the other Stacks related Javascript will 
// be attatched to it.
var stacks = {};


// this call to jQuery gives us access to the globaal
// jQuery object. 
// 'noConflict' removes the '$' variable.
// 'true' removes the 'jQuery' variable.
// removing these globals reduces conflicts with other 
// jQuery versions that might be running on this page.
stacks.jQuery = jQuery.noConflict(true);

// Javascript for stacks_in_23_page97
// ---------------------------------------------------------------------

// Each stack has its own object with its own namespace.  The name of
// that object is the same as the stack's id.
stacks.stacks_in_23_page97 = {};

// A closure is defined and assigned to the stack's object.  The object
// is also passed in as 'stack' which gives you a shorthand for referring
// to this object from elsewhere.
stacks.stacks_in_23_page97 = (function(stack) {

	// When jQuery is used it will be available as $ and jQuery but only
	// inside the closure.
	var jQuery = stacks.jQuery;
	var $ = jQuery;
	
//-- Houdini Stack v1.0.1 by Joe Workman --//
jQuery.fn.exists = function(){return jQuery(this).length>0;}
$(document).ready(function(){


//


         if($('#sidebar').exists())             { $('#stacks_in_23_page97').prependTo('#sidebar');}
	else if($('#sidebarContainer').exists())    { $('#stacks_in_23_page97').prependTo('#sidebarContainer');}
    else if($('div.sidebar').exists())          { $('#stacks_in_23_page97').prependTo('div.sidebar');}
    else if($('div.sidebarContainer').exists()) { $('#stacks_in_23_page97').prependTo('div.sidebarContainer');}
    else if($('#sidebarContentTop').exists())   { $('#stacks_in_23_page97').prependTo('#sidebarContentTop');}
    else if($('#container div.aside').exists()) { $('#stacks_in_23_page97').prependTo('#container div.aside');}
    else if($('#container aside').exists())     { $('#stacks_in_23_page97').prependTo('#container aside');}
    else if($('aside.sidebarContent').exists()) { $('#stacks_in_23_page97').prependTo('aside.sidebarContent');}
    else if($('aside').exists())                { $('#stacks_in_23_page97').prependTo('aside');}

});
//-- End Houdini Stack --//
	return stack;
})(stacks.stacks_in_23_page97);


// Javascript for stacks_in_2811_page97
// ---------------------------------------------------------------------

// Each stack has its own object with its own namespace.  The name of
// that object is the same as the stack's id.
stacks.stacks_in_2811_page97 = {};

// A closure is defined and assigned to the stack's object.  The object
// is also passed in as 'stack' which gives you a shorthand for referring
// to this object from elsewhere.
stacks.stacks_in_2811_page97 = (function(stack) {

	// When jQuery is used it will be available as $ and jQuery but only
	// inside the closure.
	var jQuery = stacks.jQuery;
	var $ = jQuery;
	
//
// Copyright (c) 2011; Inc.
// TabSnap Javascript 
// Modified 11-28-2011 09:33:58 AM
//


function tabsnap($) {


	 $(document).ready(function() {
	 
	 		$('head').append('<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/smoothness/jquery-ui.css" type="text/css" />');
	
	        // Tabs
	        
	        $('#stacks_in_2811_page97 > div.ydts-tabs').tabs({event: 'click',
	                            collapsible: false });
	                            
	        // add tabs
	        $('#stacks_in_2811_page97 > div.ydts-tabs > div.tab').each(function(n) {
	        
	        	$('#stacks_in_2811_page97 .ydts-tabs').tabs('add', '#'+$(this).attr('id'), $(this).attr('title'), n)
	        	
	        });
	    
	        
	    
	});

}; // tabsnap fn

tabsnap($);
	return stack;
})(stacks.stacks_in_2811_page97);


// Javascript for stacks_in_2828_page97
// ---------------------------------------------------------------------

// Each stack has its own object with its own namespace.  The name of
// that object is the same as the stack's id.
stacks.stacks_in_2828_page97 = {};

// A closure is defined and assigned to the stack's object.  The object
// is also passed in as 'stack' which gives you a shorthand for referring
// to this object from elsewhere.
stacks.stacks_in_2828_page97 = (function(stack) {

	// When jQuery is used it will be available as $ and jQuery but only
	// inside the closure.
	var jQuery = stacks.jQuery;
	var $ = jQuery;
	

//-- Fancy Image Hover Stack v2.2.0 by Joe Workman --//
$(document).ready(function() {
	var box_height = $('#stacks_in_2828_page97 .boxgrid .cover img').height();
	var box_width = $('#stacks_in_2828_page97 .boxgrid .cover img').width();
	$('#stacks_in_2828_page97 .boxgrid').height(box_height);
	$('#stacks_in_2828_page97 .boxgrid').width(box_width);
	$('#stacks_in_2828_page97 .back .stacks_in').first().height(box_height);
	
   	//Vertical Sliding
	$('#stacks_in_2828_page97 .boxgrid.slidedown').hover(function(){
		$('.cover', this).stop().animate({top: box_height},{queue:false,duration:600});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:600});
	});
	$('#stacks_in_2828_page97 .boxgrid.slideup').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1)},{queue:false,duration:600});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:600});
	});
	//Horizontal Sliding
	$('#stacks_in_2828_page97 .boxgrid.slideright').hover(function(){
		$('.cover', this).stop().animate({left:box_width},{queue:false,duration:600});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:600});
	});
	$('#stacks_in_2828_page97 .boxgrid.slideleft').hover(function(){
		$('.cover', this).stop().animate({left:(box_width*-1)},{queue:false,duration:600});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:600});
	});
	//Diagnal Sliding
	$('#stacks_in_2828_page97 .boxgrid.slidediag-rb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:box_width},{queue:false,duration:600});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:600});
	});
	$('#stacks_in_2828_page97 .boxgrid.slidediag-rt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:box_width},{queue:false,duration:600});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:600});
	});
	$('#stacks_in_2828_page97 .boxgrid.slidediag-lb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:(box_width*-1)},{queue:false,duration:600});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:600});
	});
	$('#stacks_in_2828_page97 .boxgrid.slidediag-lt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:(box_width*-1)},{queue:false,duration:600 });
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:600});
	});
	//Partial Sliding (Only show some of background)
	$('#stacks_in_2828_page97 .boxgrid.peek').hover(function(){
		$('.cover', this).stop().animate({top:'60px'},{queue:false,duration:600});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:600});
	});
	//Fadeout Effect
	$('#stacks_in_2828_page97 .boxgrid.fadeout').hover(function(){
		if($.browser.msie){
			$(".cover", this).css("display","none");
		}
		else{
			$(".cover", this).stop().animate({opacity:'0'},{queue:false,duration:600,complete:function(){$(this).hide()} });
		}
	}, function() {
		if($.browser.msie){
			$(".cover", this).css("display","inline");
		}
		else{
			$(".cover", this).show().stop().animate({opacity:'1'},{queue:false,duration:600});	
		}
	});
	
});
//-- End Fancy Image Hover Stack --//

	return stack;
})(stacks.stacks_in_2828_page97);


// Javascript for stacks_in_2838_page97
// ---------------------------------------------------------------------

// Each stack has its own object with its own namespace.  The name of
// that object is the same as the stack's id.
stacks.stacks_in_2838_page97 = {};

// A closure is defined and assigned to the stack's object.  The object
// is also passed in as 'stack' which gives you a shorthand for referring
// to this object from elsewhere.
stacks.stacks_in_2838_page97 = (function(stack) {

	// When jQuery is used it will be available as $ and jQuery but only
	// inside the closure.
	var jQuery = stacks.jQuery;
	var $ = jQuery;
	

//-- Fancy Image Hover Stack v2.2.0 by Joe Workman --//
$(document).ready(function() {
	var box_height = $('#stacks_in_2838_page97 .boxgrid .cover img').height();
	var box_width = $('#stacks_in_2838_page97 .boxgrid .cover img').width();
	$('#stacks_in_2838_page97 .boxgrid').height(box_height);
	$('#stacks_in_2838_page97 .boxgrid').width(box_width);
	$('#stacks_in_2838_page97 .back .stacks_in').first().height(box_height);
	
   	//Vertical Sliding
	$('#stacks_in_2838_page97 .boxgrid.slidedown').hover(function(){
		$('.cover', this).stop().animate({top: box_height},{queue:false,duration:607});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:607});
	});
	$('#stacks_in_2838_page97 .boxgrid.slideup').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1)},{queue:false,duration:607});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:607});
	});
	//Horizontal Sliding
	$('#stacks_in_2838_page97 .boxgrid.slideright').hover(function(){
		$('.cover', this).stop().animate({left:box_width},{queue:false,duration:607});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:607});
	});
	$('#stacks_in_2838_page97 .boxgrid.slideleft').hover(function(){
		$('.cover', this).stop().animate({left:(box_width*-1)},{queue:false,duration:607});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:607});
	});
	//Diagnal Sliding
	$('#stacks_in_2838_page97 .boxgrid.slidediag-rb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:box_width},{queue:false,duration:607});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:607});
	});
	$('#stacks_in_2838_page97 .boxgrid.slidediag-rt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:box_width},{queue:false,duration:607});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:607});
	});
	$('#stacks_in_2838_page97 .boxgrid.slidediag-lb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:(box_width*-1)},{queue:false,duration:607});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:607});
	});
	$('#stacks_in_2838_page97 .boxgrid.slidediag-lt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:(box_width*-1)},{queue:false,duration:607 });
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:607});
	});
	//Partial Sliding (Only show some of background)
	$('#stacks_in_2838_page97 .boxgrid.peek').hover(function(){
		$('.cover', this).stop().animate({top:'40px'},{queue:false,duration:607});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:607});
	});
	//Fadeout Effect
	$('#stacks_in_2838_page97 .boxgrid.fadeout').hover(function(){
		if($.browser.msie){
			$(".cover", this).css("display","none");
		}
		else{
			$(".cover", this).stop().animate({opacity:'0'},{queue:false,duration:607,complete:function(){$(this).hide()} });
		}
	}, function() {
		if($.browser.msie){
			$(".cover", this).css("display","inline");
		}
		else{
			$(".cover", this).show().stop().animate({opacity:'1'},{queue:false,duration:607});	
		}
	});
	
});
//-- End Fancy Image Hover Stack --//

	return stack;
})(stacks.stacks_in_2838_page97);


// Javascript for stacks_in_2843_page97
// ---------------------------------------------------------------------

// Each stack has its own object with its own namespace.  The name of
// that object is the same as the stack's id.
stacks.stacks_in_2843_page97 = {};

// A closure is defined and assigned to the stack's object.  The object
// is also passed in as 'stack' which gives you a shorthand for referring
// to this object from elsewhere.
stacks.stacks_in_2843_page97 = (function(stack) {

	// When jQuery is used it will be available as $ and jQuery but only
	// inside the closure.
	var jQuery = stacks.jQuery;
	var $ = jQuery;
	

//-- Fancy Image Hover Stack v2.2.0 by Joe Workman --//
$(document).ready(function() {
	var box_height = $('#stacks_in_2843_page97 .boxgrid .cover img').height();
	var box_width = $('#stacks_in_2843_page97 .boxgrid .cover img').width();
	$('#stacks_in_2843_page97 .boxgrid').height(box_height);
	$('#stacks_in_2843_page97 .boxgrid').width(box_width);
	$('#stacks_in_2843_page97 .back .stacks_in').first().height(box_height);
	
   	//Vertical Sliding
	$('#stacks_in_2843_page97 .boxgrid.slidedown').hover(function(){
		$('.cover', this).stop().animate({top: box_height},{queue:false,duration:613});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:613});
	});
	$('#stacks_in_2843_page97 .boxgrid.slideup').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1)},{queue:false,duration:613});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:613});
	});
	//Horizontal Sliding
	$('#stacks_in_2843_page97 .boxgrid.slideright').hover(function(){
		$('.cover', this).stop().animate({left:box_width},{queue:false,duration:613});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:613});
	});
	$('#stacks_in_2843_page97 .boxgrid.slideleft').hover(function(){
		$('.cover', this).stop().animate({left:(box_width*-1)},{queue:false,duration:613});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:613});
	});
	//Diagnal Sliding
	$('#stacks_in_2843_page97 .boxgrid.slidediag-rb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:box_width},{queue:false,duration:613});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:613});
	});
	$('#stacks_in_2843_page97 .boxgrid.slidediag-rt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:box_width},{queue:false,duration:613});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:613});
	});
	$('#stacks_in_2843_page97 .boxgrid.slidediag-lb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:(box_width*-1)},{queue:false,duration:613});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:613});
	});
	$('#stacks_in_2843_page97 .boxgrid.slidediag-lt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:(box_width*-1)},{queue:false,duration:613 });
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:613});
	});
	//Partial Sliding (Only show some of background)
	$('#stacks_in_2843_page97 .boxgrid.peek').hover(function(){
		$('.cover', this).stop().animate({top:'60px'},{queue:false,duration:613});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:613});
	});
	//Fadeout Effect
	$('#stacks_in_2843_page97 .boxgrid.fadeout').hover(function(){
		if($.browser.msie){
			$(".cover", this).css("display","none");
		}
		else{
			$(".cover", this).stop().animate({opacity:'0'},{queue:false,duration:613,complete:function(){$(this).hide()} });
		}
	}, function() {
		if($.browser.msie){
			$(".cover", this).css("display","inline");
		}
		else{
			$(".cover", this).show().stop().animate({opacity:'1'},{queue:false,duration:613});	
		}
	});
	
});
//-- End Fancy Image Hover Stack --//

	return stack;
})(stacks.stacks_in_2843_page97);


// Javascript for stacks_in_2852_page97
// ---------------------------------------------------------------------

// Each stack has its own object with its own namespace.  The name of
// that object is the same as the stack's id.
stacks.stacks_in_2852_page97 = {};

// A closure is defined and assigned to the stack's object.  The object
// is also passed in as 'stack' which gives you a shorthand for referring
// to this object from elsewhere.
stacks.stacks_in_2852_page97 = (function(stack) {

	// When jQuery is used it will be available as $ and jQuery but only
	// inside the closure.
	var jQuery = stacks.jQuery;
	var $ = jQuery;
	

//-- Fancy Image Hover Stack v2.2.0 by Joe Workman --//
$(document).ready(function() {
	var box_height = $('#stacks_in_2852_page97 .boxgrid .cover img').height();
	var box_width = $('#stacks_in_2852_page97 .boxgrid .cover img').width();
	$('#stacks_in_2852_page97 .boxgrid').height(box_height);
	$('#stacks_in_2852_page97 .boxgrid').width(box_width);
	$('#stacks_in_2852_page97 .back .stacks_in').first().height(box_height);
	
   	//Vertical Sliding
	$('#stacks_in_2852_page97 .boxgrid.slidedown').hover(function(){
		$('.cover', this).stop().animate({top: box_height},{queue:false,duration:601});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:601});
	});
	$('#stacks_in_2852_page97 .boxgrid.slideup').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1)},{queue:false,duration:601});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:601});
	});
	//Horizontal Sliding
	$('#stacks_in_2852_page97 .boxgrid.slideright').hover(function(){
		$('.cover', this).stop().animate({left:box_width},{queue:false,duration:601});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:601});
	});
	$('#stacks_in_2852_page97 .boxgrid.slideleft').hover(function(){
		$('.cover', this).stop().animate({left:(box_width*-1)},{queue:false,duration:601});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:601});
	});
	//Diagnal Sliding
	$('#stacks_in_2852_page97 .boxgrid.slidediag-rb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:box_width},{queue:false,duration:601});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:601});
	});
	$('#stacks_in_2852_page97 .boxgrid.slidediag-rt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:box_width},{queue:false,duration:601});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:601});
	});
	$('#stacks_in_2852_page97 .boxgrid.slidediag-lb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:(box_width*-1)},{queue:false,duration:601});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:601});
	});
	$('#stacks_in_2852_page97 .boxgrid.slidediag-lt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:(box_width*-1)},{queue:false,duration:601 });
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:601});
	});
	//Partial Sliding (Only show some of background)
	$('#stacks_in_2852_page97 .boxgrid.peek').hover(function(){
		$('.cover', this).stop().animate({top:'60px'},{queue:false,duration:601});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:601});
	});
	//Fadeout Effect
	$('#stacks_in_2852_page97 .boxgrid.fadeout').hover(function(){
		if($.browser.msie){
			$(".cover", this).css("display","none");
		}
		else{
			$(".cover", this).stop().animate({opacity:'0'},{queue:false,duration:601,complete:function(){$(this).hide()} });
		}
	}, function() {
		if($.browser.msie){
			$(".cover", this).css("display","inline");
		}
		else{
			$(".cover", this).show().stop().animate({opacity:'1'},{queue:false,duration:601});	
		}
	});
	
});
//-- End Fancy Image Hover Stack --//

	return stack;
})(stacks.stacks_in_2852_page97);


// Javascript for stacks_in_2859_page97
// ---------------------------------------------------------------------

// Each stack has its own object with its own namespace.  The name of
// that object is the same as the stack's id.
stacks.stacks_in_2859_page97 = {};

// A closure is defined and assigned to the stack's object.  The object
// is also passed in as 'stack' which gives you a shorthand for referring
// to this object from elsewhere.
stacks.stacks_in_2859_page97 = (function(stack) {

	// When jQuery is used it will be available as $ and jQuery but only
	// inside the closure.
	var jQuery = stacks.jQuery;
	var $ = jQuery;
	

//-- Fancy Image Hover Stack v2.2.0 by Joe Workman --//
$(document).ready(function() {
	var box_height = $('#stacks_in_2859_page97 .boxgrid .cover img').height();
	var box_width = $('#stacks_in_2859_page97 .boxgrid .cover img').width();
	$('#stacks_in_2859_page97 .boxgrid').height(box_height);
	$('#stacks_in_2859_page97 .boxgrid').width(box_width);
	$('#stacks_in_2859_page97 .back .stacks_in').first().height(box_height);
	
   	//Vertical Sliding
	$('#stacks_in_2859_page97 .boxgrid.slidedown').hover(function(){
		$('.cover', this).stop().animate({top: box_height},{queue:false,duration:612});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:612});
	});
	$('#stacks_in_2859_page97 .boxgrid.slideup').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1)},{queue:false,duration:612});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:612});
	});
	//Horizontal Sliding
	$('#stacks_in_2859_page97 .boxgrid.slideright').hover(function(){
		$('.cover', this).stop().animate({left:box_width},{queue:false,duration:612});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:612});
	});
	$('#stacks_in_2859_page97 .boxgrid.slideleft').hover(function(){
		$('.cover', this).stop().animate({left:(box_width*-1)},{queue:false,duration:612});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:612});
	});
	//Diagnal Sliding
	$('#stacks_in_2859_page97 .boxgrid.slidediag-rb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:box_width},{queue:false,duration:612});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:612});
	});
	$('#stacks_in_2859_page97 .boxgrid.slidediag-rt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:box_width},{queue:false,duration:612});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:612});
	});
	$('#stacks_in_2859_page97 .boxgrid.slidediag-lb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:(box_width*-1)},{queue:false,duration:612});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:612});
	});
	$('#stacks_in_2859_page97 .boxgrid.slidediag-lt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:(box_width*-1)},{queue:false,duration:612 });
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:612});
	});
	//Partial Sliding (Only show some of background)
	$('#stacks_in_2859_page97 .boxgrid.peek').hover(function(){
		$('.cover', this).stop().animate({top:'60px'},{queue:false,duration:612});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:612});
	});
	//Fadeout Effect
	$('#stacks_in_2859_page97 .boxgrid.fadeout').hover(function(){
		if($.browser.msie){
			$(".cover", this).css("display","none");
		}
		else{
			$(".cover", this).stop().animate({opacity:'0'},{queue:false,duration:612,complete:function(){$(this).hide()} });
		}
	}, function() {
		if($.browser.msie){
			$(".cover", this).css("display","inline");
		}
		else{
			$(".cover", this).show().stop().animate({opacity:'1'},{queue:false,duration:612});	
		}
	});
	
});
//-- End Fancy Image Hover Stack --//

	return stack;
})(stacks.stacks_in_2859_page97);


// Javascript for stacks_in_2866_page97
// ---------------------------------------------------------------------

// Each stack has its own object with its own namespace.  The name of
// that object is the same as the stack's id.
stacks.stacks_in_2866_page97 = {};

// A closure is defined and assigned to the stack's object.  The object
// is also passed in as 'stack' which gives you a shorthand for referring
// to this object from elsewhere.
stacks.stacks_in_2866_page97 = (function(stack) {

	// When jQuery is used it will be available as $ and jQuery but only
	// inside the closure.
	var jQuery = stacks.jQuery;
	var $ = jQuery;
	

//-- Fancy Image Hover Stack v2.2.0 by Joe Workman --//
$(document).ready(function() {
	var box_height = $('#stacks_in_2866_page97 .boxgrid .cover img').height();
	var box_width = $('#stacks_in_2866_page97 .boxgrid .cover img').width();
	$('#stacks_in_2866_page97 .boxgrid').height(box_height);
	$('#stacks_in_2866_page97 .boxgrid').width(box_width);
	$('#stacks_in_2866_page97 .back .stacks_in').first().height(box_height);
	
   	//Vertical Sliding
	$('#stacks_in_2866_page97 .boxgrid.slidedown').hover(function(){
		$('.cover', this).stop().animate({top: box_height},{queue:false,duration:630});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:630});
	});
	$('#stacks_in_2866_page97 .boxgrid.slideup').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1)},{queue:false,duration:630});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:630});
	});
	//Horizontal Sliding
	$('#stacks_in_2866_page97 .boxgrid.slideright').hover(function(){
		$('.cover', this).stop().animate({left:box_width},{queue:false,duration:630});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:630});
	});
	$('#stacks_in_2866_page97 .boxgrid.slideleft').hover(function(){
		$('.cover', this).stop().animate({left:(box_width*-1)},{queue:false,duration:630});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:630});
	});
	//Diagnal Sliding
	$('#stacks_in_2866_page97 .boxgrid.slidediag-rb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:box_width},{queue:false,duration:630});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:630});
	});
	$('#stacks_in_2866_page97 .boxgrid.slidediag-rt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:box_width},{queue:false,duration:630});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:630});
	});
	$('#stacks_in_2866_page97 .boxgrid.slidediag-lb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:(box_width*-1)},{queue:false,duration:630});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:630});
	});
	$('#stacks_in_2866_page97 .boxgrid.slidediag-lt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:(box_width*-1)},{queue:false,duration:630 });
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:630});
	});
	//Partial Sliding (Only show some of background)
	$('#stacks_in_2866_page97 .boxgrid.peek').hover(function(){
		$('.cover', this).stop().animate({top:'60px'},{queue:false,duration:630});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:630});
	});
	//Fadeout Effect
	$('#stacks_in_2866_page97 .boxgrid.fadeout').hover(function(){
		if($.browser.msie){
			$(".cover", this).css("display","none");
		}
		else{
			$(".cover", this).stop().animate({opacity:'0'},{queue:false,duration:630,complete:function(){$(this).hide()} });
		}
	}, function() {
		if($.browser.msie){
			$(".cover", this).css("display","inline");
		}
		else{
			$(".cover", this).show().stop().animate({opacity:'1'},{queue:false,duration:630});	
		}
	});
	
});
//-- End Fancy Image Hover Stack --//

	return stack;
})(stacks.stacks_in_2866_page97);


// Javascript for stacks_in_2881_page97
// ---------------------------------------------------------------------

// Each stack has its own object with its own namespace.  The name of
// that object is the same as the stack's id.
stacks.stacks_in_2881_page97 = {};

// A closure is defined and assigned to the stack's object.  The object
// is also passed in as 'stack' which gives you a shorthand for referring
// to this object from elsewhere.
stacks.stacks_in_2881_page97 = (function(stack) {

	// When jQuery is used it will be available as $ and jQuery but only
	// inside the closure.
	var jQuery = stacks.jQuery;
	var $ = jQuery;
	

//-- Fancy Image Hover Stack v2.2.0 by Joe Workman --//
$(document).ready(function() {
	var box_height = $('#stacks_in_2881_page97 .boxgrid .cover img').height();
	var box_width = $('#stacks_in_2881_page97 .boxgrid .cover img').width();
	$('#stacks_in_2881_page97 .boxgrid').height(box_height);
	$('#stacks_in_2881_page97 .boxgrid').width(box_width);
	$('#stacks_in_2881_page97 .back .stacks_in').first().height(box_height);
	
   	//Vertical Sliding
	$('#stacks_in_2881_page97 .boxgrid.slidedown').hover(function(){
		$('.cover', this).stop().animate({top: box_height},{queue:false,duration:609});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:609});
	});
	$('#stacks_in_2881_page97 .boxgrid.slideup').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1)},{queue:false,duration:609});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:609});
	});
	//Horizontal Sliding
	$('#stacks_in_2881_page97 .boxgrid.slideright').hover(function(){
		$('.cover', this).stop().animate({left:box_width},{queue:false,duration:609});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:609});
	});
	$('#stacks_in_2881_page97 .boxgrid.slideleft').hover(function(){
		$('.cover', this).stop().animate({left:(box_width*-1)},{queue:false,duration:609});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:609});
	});
	//Diagnal Sliding
	$('#stacks_in_2881_page97 .boxgrid.slidediag-rb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:box_width},{queue:false,duration:609});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:609});
	});
	$('#stacks_in_2881_page97 .boxgrid.slidediag-rt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:box_width},{queue:false,duration:609});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:609});
	});
	$('#stacks_in_2881_page97 .boxgrid.slidediag-lb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:(box_width*-1)},{queue:false,duration:609});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:609});
	});
	$('#stacks_in_2881_page97 .boxgrid.slidediag-lt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:(box_width*-1)},{queue:false,duration:609 });
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:609});
	});
	//Partial Sliding (Only show some of background)
	$('#stacks_in_2881_page97 .boxgrid.peek').hover(function(){
		$('.cover', this).stop().animate({top:'60px'},{queue:false,duration:609});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:609});
	});
	//Fadeout Effect
	$('#stacks_in_2881_page97 .boxgrid.fadeout').hover(function(){
		if($.browser.msie){
			$(".cover", this).css("display","none");
		}
		else{
			$(".cover", this).stop().animate({opacity:'0'},{queue:false,duration:609,complete:function(){$(this).hide()} });
		}
	}, function() {
		if($.browser.msie){
			$(".cover", this).css("display","inline");
		}
		else{
			$(".cover", this).show().stop().animate({opacity:'1'},{queue:false,duration:609});	
		}
	});
	
});
//-- End Fancy Image Hover Stack --//

	return stack;
})(stacks.stacks_in_2881_page97);


// Javascript for stacks_in_2888_page97
// ---------------------------------------------------------------------

// Each stack has its own object with its own namespace.  The name of
// that object is the same as the stack's id.
stacks.stacks_in_2888_page97 = {};

// A closure is defined and assigned to the stack's object.  The object
// is also passed in as 'stack' which gives you a shorthand for referring
// to this object from elsewhere.
stacks.stacks_in_2888_page97 = (function(stack) {

	// When jQuery is used it will be available as $ and jQuery but only
	// inside the closure.
	var jQuery = stacks.jQuery;
	var $ = jQuery;
	

//-- Fancy Image Hover Stack v2.2.0 by Joe Workman --//
$(document).ready(function() {
	var box_height = $('#stacks_in_2888_page97 .boxgrid .cover img').height();
	var box_width = $('#stacks_in_2888_page97 .boxgrid .cover img').width();
	$('#stacks_in_2888_page97 .boxgrid').height(box_height);
	$('#stacks_in_2888_page97 .boxgrid').width(box_width);
	$('#stacks_in_2888_page97 .back .stacks_in').first().height(box_height);
	
   	//Vertical Sliding
	$('#stacks_in_2888_page97 .boxgrid.slidedown').hover(function(){
		$('.cover', this).stop().animate({top: box_height},{queue:false,duration:597});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:597});
	});
	$('#stacks_in_2888_page97 .boxgrid.slideup').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1)},{queue:false,duration:597});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:597});
	});
	//Horizontal Sliding
	$('#stacks_in_2888_page97 .boxgrid.slideright').hover(function(){
		$('.cover', this).stop().animate({left:box_width},{queue:false,duration:597});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:597});
	});
	$('#stacks_in_2888_page97 .boxgrid.slideleft').hover(function(){
		$('.cover', this).stop().animate({left:(box_width*-1)},{queue:false,duration:597});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:597});
	});
	//Diagnal Sliding
	$('#stacks_in_2888_page97 .boxgrid.slidediag-rb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:box_width},{queue:false,duration:597});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:597});
	});
	$('#stacks_in_2888_page97 .boxgrid.slidediag-rt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:box_width},{queue:false,duration:597});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:597});
	});
	$('#stacks_in_2888_page97 .boxgrid.slidediag-lb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:(box_width*-1)},{queue:false,duration:597});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:597});
	});
	$('#stacks_in_2888_page97 .boxgrid.slidediag-lt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:(box_width*-1)},{queue:false,duration:597 });
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:597});
	});
	//Partial Sliding (Only show some of background)
	$('#stacks_in_2888_page97 .boxgrid.peek').hover(function(){
		$('.cover', this).stop().animate({top:'60px'},{queue:false,duration:597});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:597});
	});
	//Fadeout Effect
	$('#stacks_in_2888_page97 .boxgrid.fadeout').hover(function(){
		if($.browser.msie){
			$(".cover", this).css("display","none");
		}
		else{
			$(".cover", this).stop().animate({opacity:'0'},{queue:false,duration:597,complete:function(){$(this).hide()} });
		}
	}, function() {
		if($.browser.msie){
			$(".cover", this).css("display","inline");
		}
		else{
			$(".cover", this).show().stop().animate({opacity:'1'},{queue:false,duration:597});	
		}
	});
	
});
//-- End Fancy Image Hover Stack --//

	return stack;
})(stacks.stacks_in_2888_page97);


// Javascript for stacks_in_5_page97
// ---------------------------------------------------------------------

// Each stack has its own object with its own namespace.  The name of
// that object is the same as the stack's id.
stacks.stacks_in_5_page97 = {};

// A closure is defined and assigned to the stack's object.  The object
// is also passed in as 'stack' which gives you a shorthand for referring
// to this object from elsewhere.
stacks.stacks_in_5_page97 = (function(stack) {

	// When jQuery is used it will be available as $ and jQuery but only
	// inside the closure.
	var jQuery = stacks.jQuery;
	var $ = jQuery;
	

//-- Fancy Image Hover Stack v2.2.0 by Joe Workman --//
$(document).ready(function() {
	var box_height = $('#stacks_in_5_page97 .boxgrid .cover img').height();
	var box_width = $('#stacks_in_5_page97 .boxgrid .cover img').width();
	$('#stacks_in_5_page97 .boxgrid').height(box_height);
	$('#stacks_in_5_page97 .boxgrid').width(box_width);
	$('#stacks_in_5_page97 .back .stacks_in').first().height(box_height);
	
   	//Vertical Sliding
	$('#stacks_in_5_page97 .boxgrid.slidedown').hover(function(){
		$('.cover', this).stop().animate({top: box_height},{queue:false,duration:613});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:613});
	});
	$('#stacks_in_5_page97 .boxgrid.slideup').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1)},{queue:false,duration:613});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:613});
	});
	//Horizontal Sliding
	$('#stacks_in_5_page97 .boxgrid.slideright').hover(function(){
		$('.cover', this).stop().animate({left:box_width},{queue:false,duration:613});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:613});
	});
	$('#stacks_in_5_page97 .boxgrid.slideleft').hover(function(){
		$('.cover', this).stop().animate({left:(box_width*-1)},{queue:false,duration:613});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:613});
	});
	//Diagnal Sliding
	$('#stacks_in_5_page97 .boxgrid.slidediag-rb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:box_width},{queue:false,duration:613});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:613});
	});
	$('#stacks_in_5_page97 .boxgrid.slidediag-rt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:box_width},{queue:false,duration:613});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:613});
	});
	$('#stacks_in_5_page97 .boxgrid.slidediag-lb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:(box_width*-1)},{queue:false,duration:613});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:613});
	});
	$('#stacks_in_5_page97 .boxgrid.slidediag-lt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:(box_width*-1)},{queue:false,duration:613 });
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:613});
	});
	//Partial Sliding (Only show some of background)
	$('#stacks_in_5_page97 .boxgrid.peek').hover(function(){
		$('.cover', this).stop().animate({top:'60px'},{queue:false,duration:613});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:613});
	});
	//Fadeout Effect
	$('#stacks_in_5_page97 .boxgrid.fadeout').hover(function(){
		if($.browser.msie){
			$(".cover", this).css("display","none");
		}
		else{
			$(".cover", this).stop().animate({opacity:'0'},{queue:false,duration:613,complete:function(){$(this).hide()} });
		}
	}, function() {
		if($.browser.msie){
			$(".cover", this).css("display","inline");
		}
		else{
			$(".cover", this).show().stop().animate({opacity:'1'},{queue:false,duration:613});	
		}
	});
	
});
//-- End Fancy Image Hover Stack --//

	return stack;
})(stacks.stacks_in_5_page97);


// Javascript for stacks_in_38_page97
// ---------------------------------------------------------------------

// Each stack has its own object with its own namespace.  The name of
// that object is the same as the stack's id.
stacks.stacks_in_38_page97 = {};

// A closure is defined and assigned to the stack's object.  The object
// is also passed in as 'stack' which gives you a shorthand for referring
// to this object from elsewhere.
stacks.stacks_in_38_page97 = (function(stack) {

	// When jQuery is used it will be available as $ and jQuery but only
	// inside the closure.
	var jQuery = stacks.jQuery;
	var $ = jQuery;
	

//-- Fancy Image Hover Stack v2.2.0 by Joe Workman --//
$(document).ready(function() {
	var box_height = $('#stacks_in_38_page97 .boxgrid .cover img').height();
	var box_width = $('#stacks_in_38_page97 .boxgrid .cover img').width();
	$('#stacks_in_38_page97 .boxgrid').height(box_height);
	$('#stacks_in_38_page97 .boxgrid').width(box_width);
	$('#stacks_in_38_page97 .back .stacks_in').first().height(box_height);
	
   	//Vertical Sliding
	$('#stacks_in_38_page97 .boxgrid.slidedown').hover(function(){
		$('.cover', this).stop().animate({top: box_height},{queue:false,duration:599});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:599});
	});
	$('#stacks_in_38_page97 .boxgrid.slideup').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1)},{queue:false,duration:599});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:599});
	});
	//Horizontal Sliding
	$('#stacks_in_38_page97 .boxgrid.slideright').hover(function(){
		$('.cover', this).stop().animate({left:box_width},{queue:false,duration:599});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:599});
	});
	$('#stacks_in_38_page97 .boxgrid.slideleft').hover(function(){
		$('.cover', this).stop().animate({left:(box_width*-1)},{queue:false,duration:599});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:599});
	});
	//Diagnal Sliding
	$('#stacks_in_38_page97 .boxgrid.slidediag-rb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:box_width},{queue:false,duration:599});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:599});
	});
	$('#stacks_in_38_page97 .boxgrid.slidediag-rt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:box_width},{queue:false,duration:599});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:599});
	});
	$('#stacks_in_38_page97 .boxgrid.slidediag-lb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:(box_width*-1)},{queue:false,duration:599});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:599});
	});
	$('#stacks_in_38_page97 .boxgrid.slidediag-lt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:(box_width*-1)},{queue:false,duration:599 });
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:599});
	});
	//Partial Sliding (Only show some of background)
	$('#stacks_in_38_page97 .boxgrid.peek').hover(function(){
		$('.cover', this).stop().animate({top:'30px'},{queue:false,duration:599});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:599});
	});
	//Fadeout Effect
	$('#stacks_in_38_page97 .boxgrid.fadeout').hover(function(){
		if($.browser.msie){
			$(".cover", this).css("display","none");
		}
		else{
			$(".cover", this).stop().animate({opacity:'0'},{queue:false,duration:599,complete:function(){$(this).hide()} });
		}
	}, function() {
		if($.browser.msie){
			$(".cover", this).css("display","inline");
		}
		else{
			$(".cover", this).show().stop().animate({opacity:'1'},{queue:false,duration:599});	
		}
	});
	
});
//-- End Fancy Image Hover Stack --//

	return stack;
})(stacks.stacks_in_38_page97);


// Javascript for stacks_in_45_page97
// ---------------------------------------------------------------------

// Each stack has its own object with its own namespace.  The name of
// that object is the same as the stack's id.
stacks.stacks_in_45_page97 = {};

// A closure is defined and assigned to the stack's object.  The object
// is also passed in as 'stack' which gives you a shorthand for referring
// to this object from elsewhere.
stacks.stacks_in_45_page97 = (function(stack) {

	// When jQuery is used it will be available as $ and jQuery but only
	// inside the closure.
	var jQuery = stacks.jQuery;
	var $ = jQuery;
	

//-- Fancy Image Hover Stack v2.2.0 by Joe Workman --//
$(document).ready(function() {
	var box_height = $('#stacks_in_45_page97 .boxgrid .cover img').height();
	var box_width = $('#stacks_in_45_page97 .boxgrid .cover img').width();
	$('#stacks_in_45_page97 .boxgrid').height(box_height);
	$('#stacks_in_45_page97 .boxgrid').width(box_width);
	$('#stacks_in_45_page97 .back .stacks_in').first().height(box_height);
	
   	//Vertical Sliding
	$('#stacks_in_45_page97 .boxgrid.slidedown').hover(function(){
		$('.cover', this).stop().animate({top: box_height},{queue:false,duration:600});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:600});
	});
	$('#stacks_in_45_page97 .boxgrid.slideup').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1)},{queue:false,duration:600});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:600});
	});
	//Horizontal Sliding
	$('#stacks_in_45_page97 .boxgrid.slideright').hover(function(){
		$('.cover', this).stop().animate({left:box_width},{queue:false,duration:600});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:600});
	});
	$('#stacks_in_45_page97 .boxgrid.slideleft').hover(function(){
		$('.cover', this).stop().animate({left:(box_width*-1)},{queue:false,duration:600});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:600});
	});
	//Diagnal Sliding
	$('#stacks_in_45_page97 .boxgrid.slidediag-rb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:box_width},{queue:false,duration:600});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:600});
	});
	$('#stacks_in_45_page97 .boxgrid.slidediag-rt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:box_width},{queue:false,duration:600});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:600});
	});
	$('#stacks_in_45_page97 .boxgrid.slidediag-lb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:(box_width*-1)},{queue:false,duration:600});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:600});
	});
	$('#stacks_in_45_page97 .boxgrid.slidediag-lt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:(box_width*-1)},{queue:false,duration:600 });
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:600});
	});
	//Partial Sliding (Only show some of background)
	$('#stacks_in_45_page97 .boxgrid.peek').hover(function(){
		$('.cover', this).stop().animate({top:'30px'},{queue:false,duration:600});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:600});
	});
	//Fadeout Effect
	$('#stacks_in_45_page97 .boxgrid.fadeout').hover(function(){
		if($.browser.msie){
			$(".cover", this).css("display","none");
		}
		else{
			$(".cover", this).stop().animate({opacity:'0'},{queue:false,duration:600,complete:function(){$(this).hide()} });
		}
	}, function() {
		if($.browser.msie){
			$(".cover", this).css("display","inline");
		}
		else{
			$(".cover", this).show().stop().animate({opacity:'1'},{queue:false,duration:600});	
		}
	});
	
});
//-- End Fancy Image Hover Stack --//

	return stack;
})(stacks.stacks_in_45_page97);


// Javascript for stacks_in_64_page97
// ---------------------------------------------------------------------

// Each stack has its own object with its own namespace.  The name of
// that object is the same as the stack's id.
stacks.stacks_in_64_page97 = {};

// A closure is defined and assigned to the stack's object.  The object
// is also passed in as 'stack' which gives you a shorthand for referring
// to this object from elsewhere.
stacks.stacks_in_64_page97 = (function(stack) {

	// When jQuery is used it will be available as $ and jQuery but only
	// inside the closure.
	var jQuery = stacks.jQuery;
	var $ = jQuery;
	

//-- Fancy Image Hover Stack v2.2.0 by Joe Workman --//
$(document).ready(function() {
	var box_height = $('#stacks_in_64_page97 .boxgrid .cover img').height();
	var box_width = $('#stacks_in_64_page97 .boxgrid .cover img').width();
	$('#stacks_in_64_page97 .boxgrid').height(box_height);
	$('#stacks_in_64_page97 .boxgrid').width(box_width);
	$('#stacks_in_64_page97 .back .stacks_in').first().height(box_height);
	
   	//Vertical Sliding
	$('#stacks_in_64_page97 .boxgrid.slidedown').hover(function(){
		$('.cover', this).stop().animate({top: box_height},{queue:false,duration:300});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:300});
	});
	$('#stacks_in_64_page97 .boxgrid.slideup').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1)},{queue:false,duration:300});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:300});
	});
	//Horizontal Sliding
	$('#stacks_in_64_page97 .boxgrid.slideright').hover(function(){
		$('.cover', this).stop().animate({left:box_width},{queue:false,duration:300});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:300});
	});
	$('#stacks_in_64_page97 .boxgrid.slideleft').hover(function(){
		$('.cover', this).stop().animate({left:(box_width*-1)},{queue:false,duration:300});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:300});
	});
	//Diagnal Sliding
	$('#stacks_in_64_page97 .boxgrid.slidediag-rb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:box_width},{queue:false,duration:300});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:300});
	});
	$('#stacks_in_64_page97 .boxgrid.slidediag-rt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:box_width},{queue:false,duration:300});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:300});
	});
	$('#stacks_in_64_page97 .boxgrid.slidediag-lb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:(box_width*-1)},{queue:false,duration:300});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:300});
	});
	$('#stacks_in_64_page97 .boxgrid.slidediag-lt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:(box_width*-1)},{queue:false,duration:300 });
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:300});
	});
	//Partial Sliding (Only show some of background)
	$('#stacks_in_64_page97 .boxgrid.peek').hover(function(){
		$('.cover', this).stop().animate({top:'30px'},{queue:false,duration:300});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:300});
	});
	//Fadeout Effect
	$('#stacks_in_64_page97 .boxgrid.fadeout').hover(function(){
		if($.browser.msie){
			$(".cover", this).css("display","none");
		}
		else{
			$(".cover", this).stop().animate({opacity:'0'},{queue:false,duration:300,complete:function(){$(this).hide()} });
		}
	}, function() {
		if($.browser.msie){
			$(".cover", this).css("display","inline");
		}
		else{
			$(".cover", this).show().stop().animate({opacity:'1'},{queue:false,duration:300});	
		}
	});
	
});
//-- End Fancy Image Hover Stack --//

	return stack;
})(stacks.stacks_in_64_page97);


// Javascript for stacks_in_14_page97
// ---------------------------------------------------------------------

// Each stack has its own object with its own namespace.  The name of
// that object is the same as the stack's id.
stacks.stacks_in_14_page97 = {};

// A closure is defined and assigned to the stack's object.  The object
// is also passed in as 'stack' which gives you a shorthand for referring
// to this object from elsewhere.
stacks.stacks_in_14_page97 = (function(stack) {

	// When jQuery is used it will be available as $ and jQuery but only
	// inside the closure.
	var jQuery = stacks.jQuery;
	var $ = jQuery;
	

//-- Fancy Image Hover Stack v2.2.0 by Joe Workman --//
$(document).ready(function() {
	var box_height = $('#stacks_in_14_page97 .boxgrid .cover img').height();
	var box_width = $('#stacks_in_14_page97 .boxgrid .cover img').width();
	$('#stacks_in_14_page97 .boxgrid').height(box_height);
	$('#stacks_in_14_page97 .boxgrid').width(box_width);
	$('#stacks_in_14_page97 .back .stacks_in').first().height(box_height);
	
   	//Vertical Sliding
	$('#stacks_in_14_page97 .boxgrid.slidedown').hover(function(){
		$('.cover', this).stop().animate({top: box_height},{queue:false,duration:619});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:619});
	});
	$('#stacks_in_14_page97 .boxgrid.slideup').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1)},{queue:false,duration:619});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:619});
	});
	//Horizontal Sliding
	$('#stacks_in_14_page97 .boxgrid.slideright').hover(function(){
		$('.cover', this).stop().animate({left:box_width},{queue:false,duration:619});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:619});
	});
	$('#stacks_in_14_page97 .boxgrid.slideleft').hover(function(){
		$('.cover', this).stop().animate({left:(box_width*-1)},{queue:false,duration:619});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:619});
	});
	//Diagnal Sliding
	$('#stacks_in_14_page97 .boxgrid.slidediag-rb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:box_width},{queue:false,duration:619});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:619});
	});
	$('#stacks_in_14_page97 .boxgrid.slidediag-rt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:box_width},{queue:false,duration:619});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:619});
	});
	$('#stacks_in_14_page97 .boxgrid.slidediag-lb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:(box_width*-1)},{queue:false,duration:619});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:619});
	});
	$('#stacks_in_14_page97 .boxgrid.slidediag-lt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:(box_width*-1)},{queue:false,duration:619 });
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:619});
	});
	//Partial Sliding (Only show some of background)
	$('#stacks_in_14_page97 .boxgrid.peek').hover(function(){
		$('.cover', this).stop().animate({top:'30px'},{queue:false,duration:619});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:619});
	});
	//Fadeout Effect
	$('#stacks_in_14_page97 .boxgrid.fadeout').hover(function(){
		if($.browser.msie){
			$(".cover", this).css("display","none");
		}
		else{
			$(".cover", this).stop().animate({opacity:'0'},{queue:false,duration:619,complete:function(){$(this).hide()} });
		}
	}, function() {
		if($.browser.msie){
			$(".cover", this).css("display","inline");
		}
		else{
			$(".cover", this).show().stop().animate({opacity:'1'},{queue:false,duration:619});	
		}
	});
	
});
//-- End Fancy Image Hover Stack --//

	return stack;
})(stacks.stacks_in_14_page97);


// Javascript for stacks_in_2874_page97
// ---------------------------------------------------------------------

// Each stack has its own object with its own namespace.  The name of
// that object is the same as the stack's id.
stacks.stacks_in_2874_page97 = {};

// A closure is defined and assigned to the stack's object.  The object
// is also passed in as 'stack' which gives you a shorthand for referring
// to this object from elsewhere.
stacks.stacks_in_2874_page97 = (function(stack) {

	// When jQuery is used it will be available as $ and jQuery but only
	// inside the closure.
	var jQuery = stacks.jQuery;
	var $ = jQuery;
	

//-- Fancy Image Hover Stack v2.2.0 by Joe Workman --//
$(document).ready(function() {
	var box_height = $('#stacks_in_2874_page97 .boxgrid .cover img').height();
	var box_width = $('#stacks_in_2874_page97 .boxgrid .cover img').width();
	$('#stacks_in_2874_page97 .boxgrid').height(box_height);
	$('#stacks_in_2874_page97 .boxgrid').width(box_width);
	$('#stacks_in_2874_page97 .back .stacks_in').first().height(box_height);
	
   	//Vertical Sliding
	$('#stacks_in_2874_page97 .boxgrid.slidedown').hover(function(){
		$('.cover', this).stop().animate({top: box_height},{queue:false,duration:614});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:614});
	});
	$('#stacks_in_2874_page97 .boxgrid.slideup').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1)},{queue:false,duration:614});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:614});
	});
	//Horizontal Sliding
	$('#stacks_in_2874_page97 .boxgrid.slideright').hover(function(){
		$('.cover', this).stop().animate({left:box_width},{queue:false,duration:614});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:614});
	});
	$('#stacks_in_2874_page97 .boxgrid.slideleft').hover(function(){
		$('.cover', this).stop().animate({left:(box_width*-1)},{queue:false,duration:614});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:614});
	});
	//Diagnal Sliding
	$('#stacks_in_2874_page97 .boxgrid.slidediag-rb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:box_width},{queue:false,duration:614});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:614});
	});
	$('#stacks_in_2874_page97 .boxgrid.slidediag-rt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:box_width},{queue:false,duration:614});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:614});
	});
	$('#stacks_in_2874_page97 .boxgrid.slidediag-lb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:(box_width*-1)},{queue:false,duration:614});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:614});
	});
	$('#stacks_in_2874_page97 .boxgrid.slidediag-lt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:(box_width*-1)},{queue:false,duration:614 });
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:614});
	});
	//Partial Sliding (Only show some of background)
	$('#stacks_in_2874_page97 .boxgrid.peek').hover(function(){
		$('.cover', this).stop().animate({top:'30px'},{queue:false,duration:614});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:614});
	});
	//Fadeout Effect
	$('#stacks_in_2874_page97 .boxgrid.fadeout').hover(function(){
		if($.browser.msie){
			$(".cover", this).css("display","none");
		}
		else{
			$(".cover", this).stop().animate({opacity:'0'},{queue:false,duration:614,complete:function(){$(this).hide()} });
		}
	}, function() {
		if($.browser.msie){
			$(".cover", this).css("display","inline");
		}
		else{
			$(".cover", this).show().stop().animate({opacity:'1'},{queue:false,duration:614});	
		}
	});
	
});
//-- End Fancy Image Hover Stack --//

	return stack;
})(stacks.stacks_in_2874_page97);


// Javascript for stacks_in_52_page97
// ---------------------------------------------------------------------

// Each stack has its own object with its own namespace.  The name of
// that object is the same as the stack's id.
stacks.stacks_in_52_page97 = {};

// A closure is defined and assigned to the stack's object.  The object
// is also passed in as 'stack' which gives you a shorthand for referring
// to this object from elsewhere.
stacks.stacks_in_52_page97 = (function(stack) {

	// When jQuery is used it will be available as $ and jQuery but only
	// inside the closure.
	var jQuery = stacks.jQuery;
	var $ = jQuery;
	

//-- Fancy Image Hover Stack v2.2.0 by Joe Workman --//
$(document).ready(function() {
	var box_height = $('#stacks_in_52_page97 .boxgrid .cover img').height();
	var box_width = $('#stacks_in_52_page97 .boxgrid .cover img').width();
	$('#stacks_in_52_page97 .boxgrid').height(box_height);
	$('#stacks_in_52_page97 .boxgrid').width(box_width);
	$('#stacks_in_52_page97 .back .stacks_in').first().height(box_height);
	
   	//Vertical Sliding
	$('#stacks_in_52_page97 .boxgrid.slidedown').hover(function(){
		$('.cover', this).stop().animate({top: box_height},{queue:false,duration:602});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:602});
	});
	$('#stacks_in_52_page97 .boxgrid.slideup').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1)},{queue:false,duration:602});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:602});
	});
	//Horizontal Sliding
	$('#stacks_in_52_page97 .boxgrid.slideright').hover(function(){
		$('.cover', this).stop().animate({left:box_width},{queue:false,duration:602});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:602});
	});
	$('#stacks_in_52_page97 .boxgrid.slideleft').hover(function(){
		$('.cover', this).stop().animate({left:(box_width*-1)},{queue:false,duration:602});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:602});
	});
	//Diagnal Sliding
	$('#stacks_in_52_page97 .boxgrid.slidediag-rb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:box_width},{queue:false,duration:602});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:602});
	});
	$('#stacks_in_52_page97 .boxgrid.slidediag-rt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:box_width},{queue:false,duration:602});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:602});
	});
	$('#stacks_in_52_page97 .boxgrid.slidediag-lb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:(box_width*-1)},{queue:false,duration:602});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:602});
	});
	$('#stacks_in_52_page97 .boxgrid.slidediag-lt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:(box_width*-1)},{queue:false,duration:602 });
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:602});
	});
	//Partial Sliding (Only show some of background)
	$('#stacks_in_52_page97 .boxgrid.peek').hover(function(){
		$('.cover', this).stop().animate({top:'30px'},{queue:false,duration:602});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:602});
	});
	//Fadeout Effect
	$('#stacks_in_52_page97 .boxgrid.fadeout').hover(function(){
		if($.browser.msie){
			$(".cover", this).css("display","none");
		}
		else{
			$(".cover", this).stop().animate({opacity:'0'},{queue:false,duration:602,complete:function(){$(this).hide()} });
		}
	}, function() {
		if($.browser.msie){
			$(".cover", this).css("display","inline");
		}
		else{
			$(".cover", this).show().stop().animate({opacity:'1'},{queue:false,duration:602});	
		}
	});
	
});
//-- End Fancy Image Hover Stack --//

	return stack;
})(stacks.stacks_in_52_page97);


// Javascript for stacks_in_61_page97
// ---------------------------------------------------------------------

// Each stack has its own object with its own namespace.  The name of
// that object is the same as the stack's id.
stacks.stacks_in_61_page97 = {};

// A closure is defined and assigned to the stack's object.  The object
// is also passed in as 'stack' which gives you a shorthand for referring
// to this object from elsewhere.
stacks.stacks_in_61_page97 = (function(stack) {

	// When jQuery is used it will be available as $ and jQuery but only
	// inside the closure.
	var jQuery = stacks.jQuery;
	var $ = jQuery;
	

//-- Fancy Image Hover Stack v2.2.0 by Joe Workman --//
$(document).ready(function() {
	var box_height = $('#stacks_in_61_page97 .boxgrid .cover img').height();
	var box_width = $('#stacks_in_61_page97 .boxgrid .cover img').width();
	$('#stacks_in_61_page97 .boxgrid').height(box_height);
	$('#stacks_in_61_page97 .boxgrid').width(box_width);
	$('#stacks_in_61_page97 .back .stacks_in').first().height(box_height);
	
   	//Vertical Sliding
	$('#stacks_in_61_page97 .boxgrid.slidedown').hover(function(){
		$('.cover', this).stop().animate({top: box_height},{queue:false,duration:608});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:608});
	});
	$('#stacks_in_61_page97 .boxgrid.slideup').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1)},{queue:false,duration:608});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:608});
	});
	//Horizontal Sliding
	$('#stacks_in_61_page97 .boxgrid.slideright').hover(function(){
		$('.cover', this).stop().animate({left:box_width},{queue:false,duration:608});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:608});
	});
	$('#stacks_in_61_page97 .boxgrid.slideleft').hover(function(){
		$('.cover', this).stop().animate({left:(box_width*-1)},{queue:false,duration:608});
	}, function() {
		$('.cover', this).stop().animate({left:'0px'},{queue:false,duration:608});
	});
	//Diagnal Sliding
	$('#stacks_in_61_page97 .boxgrid.slidediag-rb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:box_width},{queue:false,duration:608});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:608});
	});
	$('#stacks_in_61_page97 .boxgrid.slidediag-rt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:box_width},{queue:false,duration:608});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:608});
	});
	$('#stacks_in_61_page97 .boxgrid.slidediag-lb').hover(function(){
		$('.cover', this).stop().animate({top: box_height, left:(box_width*-1)},{queue:false,duration:608});
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:608});
	});
	$('#stacks_in_61_page97 .boxgrid.slidediag-lt').hover(function(){
		$('.cover', this).stop().animate({top: (box_height*-1), left:(box_width*-1)},{queue:false,duration:608 });
	}, function() {
		$('.cover', this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:608});
	});
	//Partial Sliding (Only show some of background)
	$('#stacks_in_61_page97 .boxgrid.peek').hover(function(){
		$('.cover', this).stop().animate({top:'30px'},{queue:false,duration:608});
	}, function() {
		$('.cover', this).stop().animate({top:'0px'},{queue:false,duration:608});
	});
	//Fadeout Effect
	$('#stacks_in_61_page97 .boxgrid.fadeout').hover(function(){
		if($.browser.msie){
			$(".cover", this).css("display","none");
		}
		else{
			$(".cover", this).stop().animate({opacity:'0'},{queue:false,duration:608,complete:function(){$(this).hide()} });
		}
	}, function() {
		if($.browser.msie){
			$(".cover", this).css("display","inline");
		}
		else{
			$(".cover", this).show().stop().animate({opacity:'1'},{queue:false,duration:608});	
		}
	});
	
});
//-- End Fancy Image Hover Stack --//

	return stack;
})(stacks.stacks_in_61_page97);



