$(document).ready(function(){
    //Examples of how to assign the ColorBox event to elements
			
    $(".example5").colorbox({iframe: true, width:"50%", height: "50%", href:"http://google.com"});
    $(".video").colorbox({
        iframe:true, 
        innerWidth:480, 
        innerHeight:390
    });
    $(".newsletter").colorbox({
        width:"50%", 
        height:"50%", 
        iframe:true
    });

});
