// JavaScript Document
$(document).ready(function(){
	$("#menu_bar img").mouseover(function(){
		this.src = this.src.replace("1","2");
	});

	$("#menu_bar img").mouseout(function(){
		this.src = this.src.replace("2","1");
	});
	
	$(".colorbox").colorbox();
	$(".colorbox_v").colorbox({iframe:true,width:600,height:450});	
});

