//main javascript file 

$(document).ready(function(){
//this is for the rotating image template
$('#profile_cycle').removeClass('hide');
$('#profile_cycle').cycle({
    fx:    'fade',
    speedIn: 1000,
    speedOut: 500,	
    speed:  3325 
 });
//additional code after this line

$('.vidpop').click(function(){
 newwindow=window.open($(this).attr("href"),'name','height=360,width=570,status=no,menubar=no,scrollbars=no,resizable=no' );
        if (window.focus) {newwindow.focus()}
        return false;

return false;
}); //close click


});

function vid_pop(url) {
        newwindow=window.open(url,'name','height=360,width=570,status=no,menubar=no,scrollbars=no,resizable=no' );
        if (window.focus) {newwindow.focus()}
        return false;
}


