$(document).ready(function(){
	
						   
	var v_link = $("a.video_link");
	if(v_link.length > 0) {
		$("<link>").appendTo("head").attr({rel: "stylesheet", type: "text/css", href: base_url+"/styles/colorbox.css"});
		$.getScript(base_url+"/scripts/jquery.colorbox.js", function() {
			if(navigator.appName == 'Microsoft Internet Explorer'){
				v_link.colorbox({
							width:"525px",
							height:"490px",
							iframe:true
					});	
			}else{
				v_link.colorbox({
							width:"520px",
							height:"480px",
							iframe:true
					});	
			}
		});
	}
});

