$().ready(function() {	
	Shadowbox.init({
		onOpen: function(){
			$('.slideshow').cycle('pause');
			$('.vedio').cycle('pause');
		},
		onClose: function(){
			$('.slideshow').cycle('resume');
			$('.vedio').cycle('resume');
		}
	});

	$('.slideshow').cycle({
		fx: 'fade',				
		speed:    1000, 
		timeout:  15000
	});
	$('.vedio').cycle({
		fx: 'fade',				
		speed:    1000, 
		timeout:  10000
	});
	
	
	if($("img[name='pimg']").length > 0){
		$("img[name='pimg']").each(function(im){
			$(this).parent().parent().mouseover(function(){
				$(this).css('cursor', 'pointer');
			}).mouseout(function(){
				$(this).css('cursor', '');
			}).click(function(){
				
				self.location.href=$("img[name='pimg']").eq(im).parent().parent().attr('href');
			});
		});
	}
});
