// JavaScript Document
if (typeof jQuery == "undefined") document.write('<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>');

jQuery(document).ready(function() {

	jQuery('#first_img').load(function(){
		jQuery('#cycle').cycle({
			fx: 'fade' ,
			speed: 500,
			timeout: 9000
		}); 
	});
	
	jQuery('.video').colorbox({iframe:true, innerWidth:853, innerHeight:480});
	
});
