/**
 * jCarouselLite 1.0.1
 *
 * Copyright (c) 2007 Ganeshji Marwaha (gmarwaha.com)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 */
(function($){$.fn.jCarouselLite=function(o){o=$.extend({btnPrev:null,btnNext:null,btnGo:null,mouseWheel:false,auto:null,speed:200,easing:null,vertical:false,circular:true,visible:3,start:0,scroll:1,beforeStart:null,afterEnd:null},o||{});return this.each(function(){var b=false,animCss=o.vertical?"top":"left",sizeCss=o.vertical?"height":"width";var c=$(this),ul=$("ul",c),tLi=$("li",ul),tl=tLi.size(),v=o.visible;if(o.circular){ul.prepend(tLi.slice(tl-v-1+1).clone()).append(tLi.slice(0,v).clone());o.start+=v}var f=$("li",ul),itemLength=f.size(),curr=o.start;c.css("visibility","visible");f.css({overflow:"hidden",float:o.vertical?"none":"left"});ul.css({margin:"0",padding:"0",position:"relative","list-style-type":"none","z-index":"1"});c.css({overflow:"hidden",position:"relative","z-index":"2",left:"0px"});var g=o.vertical?height(f):width(f);var h=g*itemLength;var j=g*v;f.css({width:f.width(),height:f.height()});ul.css(sizeCss,h+"px").css(animCss,-(curr*g));c.css(sizeCss,j+"px");if(o.btnPrev)$(o.btnPrev).click(function(){return go(curr-o.scroll)});if(o.btnNext)$(o.btnNext).click(function(){return go(curr+o.scroll)});if(o.btnGo)$.each(o.btnGo,function(i,a){$(a).click(function(){return go(o.circular?o.visible+i:i)})});if(o.mouseWheel&&c.mousewheel)c.mousewheel(function(e,d){return d>0?go(curr-o.scroll):go(curr+o.scroll)});if(o.auto)setInterval(function(){go(curr+o.scroll)},o.auto+o.speed);function vis(){return f.slice(curr).slice(0,v)};function go(a){if(!b){if(o.beforeStart)o.beforeStart.call(this,vis());if(o.circular){if(a<=o.start-v-1){ul.css(animCss,-((itemLength-(v*2))*g)+"px");curr=a==o.start-v-1?itemLength-(v*2)-1:itemLength-(v*2)-o.scroll}else if(a>=itemLength-v+1){ul.css(animCss,-((v)*g)+"px");curr=a==itemLength-v+1?v+1:v+o.scroll}else curr=a}else{if(a<0||a>itemLength-v)return;else curr=a}b=true;ul.animate(animCss=="left"?{left:-(curr*g)}:{top:-(curr*g)},o.speed,o.easing,function(){if(o.afterEnd)o.afterEnd.call(this,vis());b=false});if(!o.circular){$(o.btnPrev+","+o.btnNext).removeClass("disabled");$((curr-o.scroll<0&&o.btnPrev)||(curr+o.scroll>itemLength-v&&o.btnNext)||[]).addClass("disabled")}}return false}})};function css(a,b){return parseInt($.css(a[0],b))||0};function width(a){return a[0].offsetWidth+css(a,'marginLeft')+css(a,'marginRight')};function height(a){return a[0].offsetHeight+css(a,'marginTop')+css(a,'marginBottom')}})(jQuery);

var showCategoryVideos = function(tag_name) {
	if (tag_name != '' || tag_name != null) {
		$.get(
			'/tags_videos.php',
			{
				tag: tag_name
			},
			function(html) {
				$('#tag_'+tag_name).prepend(html);
			}
		);
	}
}

jQuery(document).ready(function($) {
	
	$('div.cs_container').each(function() {
		var ratingOne = $(this).children('div.rating_full').children('div.rating_1').attr('rel');
		var ratingTwo = $(this).children('div.rating_full').children('div.rating_2').attr('rel');
		var ratingThree = $(this).children('div.rating_full').children('div.rating_3').attr('rel');
		var ratingFour = $(this).children('div.rating_full').children('div.rating_4').attr('rel');
		var ratingAverage = Math.round((ratingOne*1 + ratingTwo*1 + ratingThree*1 + ratingFour*1)/4);
		$(this).children('div.rating').addClass('average_'+ratingAverage);
	});
	
	var videoViewHeight = $('#video_info_col > div.video_view').height();
	$('#paysites_list_col').css('height', videoViewHeight+'px').insertAfter('#video_info_col > div.video_view');
	
	$('#side_col h1.block_header:eq(0)').addClass('block_header_1');
	
	var commentsNum = $('#video_comments').attr('rel');
	$('#comments_num').text(commentsNum);
	
	$('#video_comments_col').hide();
	$('#comments_list_open').bind('click', function() {
		$('#paysite_review').hide();
		if ($('#video_comments_col').is(':hidden')) {
			$('#video_comments_col').fadeIn('fast');
		}
		return false;
	});
	
	setInterval(function() {
		$('#wide_col, #side_col').removeAttr('style');
		var wideColHeight = $('#wide_col').height();
		var sideColHeight = $('#side_col').height();
		if (wideColHeight > sideColHeight) {
			$('#side_col').css('min-height', wideColHeight+'px');
		} else {
			$('#wide_col').css('min-height', sideColHeight+'px');
		}
	}, 250);
	
});

$(document).ready(function(){
	$("#tab1_but").click(function(event){
		$("#sponsor_videos_col").hide();
		$("#related_videos_col").fadeIn();		
		$(this).css("background","url(/images/tab1_on.gif)");
		$("#tab2_but").css("background","url(/images/tab2_off.gif)");
//		event.preventDefault();
	});
	$("#tab2_but").click(function(event){
		$("#related_videos_col").hide();
		$("#sponsor_videos_col").fadeIn();
		$(this).css("background","url(/images/tab2_on.gif)");
		$("#tab1_but").css("background","url(/images/tab1_off.gif)");
//		event.preventDefault();
	});
	var nr = $([]);
	$("#related_videos .vid").each(function(index){
		nr = nr.add(this);
		if (index==9 || !$(this).next().length){
			nr.wrapAll("<div class=tab_wrap></div>");
			nr = $([]);
		}
	});
	$("#sponsor_videos .vid").each(function(index){
		nr = nr.add(this);
		if (index==9 || !$(this).next().length){
			nr.wrapAll("<div class=tab_wrap></div>");
			nr = $([]);
		}
	});
	$("#related_videos .tab_wrap:not(#related_videos .tab_wrap:eq(0))").hide();
	$("#sponsor_videos .tab_wrap:not(#sponsor_videos .tab_wrap:eq(0))").hide();
	$(".arrow_left").removeAttr("href");
	$(".arrow_right").each(function(){
		if(!$(this).parent().find(".tab_wrap:visible").next().length) $(this).removeAttr("href");
	});
	$("#sponsor_videos_col").hide();
	$(".arrow_right").click(function(event){
		obj = $(this).parent().find(".tab_wrap:visible");
		if ($(obj).next().length){
			$(obj).hide();
			$(obj).next().fadeIn();
			if (!$(obj).next().next().length) $(this).removeAttr("href");
			$(this).parent().find(".arrow_left").attr("href","#");
		};
//		event.preventDefault();
	});
	$(".arrow_left").click(function(event){
		obj = $(this).parent().find(".tab_wrap:visible");
		if ($(obj).prev().length){
			$(obj).hide();
			$(obj).prev().fadeIn();
			if (!$(obj).prev().prev().length) $(this).removeAttr("href");
			$(this).parent().find(".arrow_right").attr("href","#");
		};
//		event.preventDefault();
	});
});
