$(document).ready(function() {
    $('#slides').cycle({
    fx: 'fade',
    next:   '#next', 
    prev:   '#prev',
    pager:  '#pager',
    timeout: 5000,
      speed: 1200,
    pause:  true
      });
      
      

$(".videoPicture").click(function(){
	var li = $(this).parent();
	$(".content a", li).click();
});   
      
$("a.youtube").each(function(){

	var youtubeid = $(this).attr("href").replace(new RegExp("watch\\?v=", "i"), 'v/');
 	$(this).fancybox({
                    'titleShow'     : false,
                    'transitionIn'  : 'elastic',
                    'transitionOut' : 'elastic',
            		'href' : youtubeid,
            		'type'      : 'swf',
            		'swf'       : {'wmode':'transparent','allowfullscreen':'true'}
        }); 
       });     
        
    
});



