			
			$(document).ready(function(){
//colorbox function
				$(".toflash").colorbox({iframe:true, innerWidth:550, innerHeight:510, opacity: 0.5});
				
//				$("#click").click(function(){ 
//					$('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
//					return false;
//				});
				$(".clickphoto").colorbox({opacity: 0.5});
//mouseover function
  $(".toflash img, .clickphoto img").mouseover(function(){
    $(this).attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_mo$2"))
  })
  $(".toflash img, .clickphoto img").mouseout(function(){
    $(this).attr("src",$(this).attr("src").replace(/^(.+)_mo(\.[a-z]+)$/, "$1$2"))
  })
});


