// JavaScript Document
$(document).ready(function(){
	$(".colorbox").colorbox();
	$(".colorbox_v").colorbox({iframe:true,width:600,height:450});	
	$('img[src*="show_image"]').colorbox({photo:true,href:function(){return $(this).attr('src')}});
	$('img[src*="show_image"]').css('cursor','pointer');
});

