var streiktv_jquery_closetext='';
$(function() {
	
	// MAIN NAV
	$('.mainnav .level1 li a').hover(function() {
		var tmpID = $(this).parent().attr('id');
		$('.level1 li a.navheader').removeClass('selected');
		$(this).addClass('selected');
		if (tmpID != '') {
			$('.level1 li[id='+tmpID+'] ul.level2').show();
			$('.level1 li[id!='+tmpID+'] ul.level2').hide();
		}
	});
	
	$('.level2').mouseover(function() {
		var tmpID = $(this).parent().attr('id');
		$('.level1 li#'+tmpID+' a.navheader').addClass('selected');
	});

	$('.level2').mouseleave(function() {
		$('.level1 li a.navheader').removeClass('selected');
		$('.level2').hide();
	});
	
	$('.level2').click(function() {
		$('.level1 li a.navheader').removeClass('selected');
		$('.level2').hide();
	});
	
	$('.level1').mouseleave(function() {
		$('.level1 li a.navheader').removeClass('selected');
		$('.level2').hide();
	});
	
	$('.mainnav .level1 li a').click(function() {
		var tmpID = $(this).parent().attr('id');
		if ((tmpID == 'remember') || (tmpID == 'lastview')) {
			$('.level1 li a.navheader').removeClass('active');
			$(this).addClass('active');
		} else {
			$('.level1 li a.navheader').removeClass('active');
		}
	});
	
	// URL FAVICON
	$('#urlfavicon a').urlfavicon();
	
	streiktv_jquery_closetext = $('#closewindow').text();
	
	
	// SEARCH BAR
	var tmpText = $('#mainsearch').val();
	$("#mainsearch").click(function() {
		if ($("#mainsearch").val() == tmpText) {
			$(this).val('');
		}
	});
	$(document).mouseup(function() {
		if ($("#mainsearch").val() == '') {
			$("#mainsearch").val(tmpText);
		}
	});
	
	// VIDEO RELATED
	var colheight = $('.maincontent#videocombo .col_left').height();
	if (colheight == $('.maincontent#videocombo .col_right').height()) {
		$('.video_related').css({
			position: 'absolute'	
		});
	}
	/*
	// VIDEO RELATED
	var colheight = $('.maincontent#videocombo .col_left').height();
	$('.maincontent#videocombo .col_right').css('height', colheight);
	$('.maincontent#videocombo .col_right').css('position', colheight);
	
	*/
        set_recommendemail_jquery();
        set_videoupload_jquery();

});

function set_videoupload_jquery() {
	// VIDEO UPLOAD
	$("#videoupload").colorbox({
		width: "820px", 
		height: "650px", 
		iframe: true,
		opacity: 0.7,
		title: false,
		close: streiktv_jquery_closetext,
		overlayClose: false
	});
	
}

function set_recommendemail_jquery() {
	// RECOMMEND EMAIL
	$("#recommendemail").colorbox({
		width: "450px", 
		height: "680px", 
		initialWidth: "150px", 
		iframe: true,
		opacity: 0.7,
		title: false,
		close: streiktv_jquery_closetext
	});
}

