/*
chrisbovard.com
Dahopafilms JS functions
Dec 17, 2007
*/
//get the click to open popup
$(document).ready(function() {
	$('a[rel*=player]').click(function(){						   				   
        window.open(this.href,'','width=555,height=475');
        return false;
    });
});
//flash for main page
$(document).ready(function(){
    $('#flashbanner').flash(
        { src: '_flv/banner.swf',
          width: 780,
          height: 200 },
        { version: 8 }
    );
});

//flash player close window fucntion
//get the click to open popup
$(document).ready(function() {
	$('a[rel*=close]').click(function(){						   				   
        window.close();
        return false;
    });
});


