
$(document).ready(function () {

	$("#videoplayer div.closebutton p").show();
	$(".brandoptions").show();

	
	//image rollover
	$("a.roll").bind('mouseover focus', function(event) {
		$(this).find('img').attr("src", $(this).find('img').attr("src").split('_f1').join('_f2'))
	}).bind('mouseout blur', function(event) {/*mouseout*/
		$(this).find('img').attr("src", $(this).find('img').attr("src").split('_f2').join('_f1'))
	});

	//open links in a new window - rel=external
	$("a[rel=external]").attr("target","_blank").each(function(n) {
		$(this).attr("title") !='' ? this.title=$(this).attr("title")+'. Opens in a new browser window.' : this.title='Opens in a new browser window.';
	});

	
	$("form input.form_button").bind('mouseover focus', function(event) {
		$(this).addClass('form_button_f2');
	}).bind('mouseout blur', function(event) {
		$(this).removeClass('form_button_f2');
	});


	//toggle for brand dropdown
	$("#videoplayer div.formbar div.brandoptions").hide();
	$('.togglecontent').click(function(){
		var currentitem = $(this).parent()
		$(currentitem).next("div.brandoptions").slideToggle("fast")
		$(currentitem).toggleClass('brands_open')
		return false;
	});

});	

