$(document).ready(function(){						 		   	// ROLLOVER NAVBAR			$("#navbar>img").each(function() {			// Set the original src			rollsrc = $(this).attr("src");			rollON = rollsrc.replace(/.png$/ig,"_push.png");			$("<img>").attr("src", rollON);		});				// Navigation rollovers		$("#navbar a").mouseover(function(){			imgsrc = $(this).children("img").attr("src");			matches = imgsrc.match(/_push/);						// don't do the rollover if state is already ON			if (!matches) {			imgsrcON = imgsrc.replace(/.png$/ig,"_push.png"); // strip off extension			$(this).children("img").attr("src", imgsrcON);			}					});				$("#navbar a").mouseout(function(){			$(this).children("img").attr("src", imgsrc);		});					// ROLLOVER LANGUAGES					$("#language_layer img").each(function() {			// Set the original src			rollsrc = $(this).attr("src");			rollON = rollsrc.replace(/.png$/ig,"_push.png");			$("<img>").attr("src", rollON);		});					$("#language_layer a").mouseover(function(){			imgsrc = $(this).children("img").attr("src");			matches = imgsrc.match(/_push/);						// don't do the rollover if state is already ON			if (!matches) {			imgsrcON = imgsrc.replace(/.png$/ig,"_push.png"); // strip off extension			$(this).children("img").attr("src", imgsrcON);			}					});				$("#language_layer a").mouseout(function(){			$(this).children("img").attr("src", imgsrc);		});										   						   					/*		   $(".imgover").mouseover(function(){						 $(this).css("border", "1px solid #fba919");					});*/							//Caption Sliding (Partially Hidden to Visible)				$('.boxgrid.caption').hover(function(){					$(".cover", this).stop().animate({top:'50px'},{queue:false,duration:160});				}, function() {					$(".cover", this).stop().animate({top:'135px'},{queue:false,duration:160});				});																});	