// JavaScript Document
// Caption Slider taken from: http://buildinternet.com/2009/03/sliding-boxes-and-captions-with-jquery/

jQuery.each(jQuery.browser, function(i, val) {

  if(i!=="msie" && jQuery.browser.version.substr(0,3)!=="6.0"){

 
  jQuery(document).ready(function(){
//Caption Sliding Horizontal (Partially Hidden to Visible)
jQuery('.boxgridH.captionH').hover(function(){
jQuery(".coverH", this).stop().animate({right:'-50px'},{queue:false,duration:160});
}, function() {
jQuery(".coverH", this).stop().animate({right:'250px'},{queue:false,duration:160});
		});
	});

}
  
  else {  if(i=="msie" && jQuery.browser.version.substr(0,3)=="6.0"){
	  
	    jQuery(document).ready(function(){
//Caption Sliding Horizontal (Partially Hidden to Visible)
jQuery('.boxgridH.captionH').hover(function(){
jQuery(".coverH", this).stop().animate({right:'-50px'},{queue:false,duration:160});
}, function() {
jQuery(".coverH", this).stop().animate({right:'240px'},{queue:false,duration:160});
		});
	});
  }
}

});


