﻿jQuery(window).bind('load', function(){
	jQuery('a[rel=external]').each(
		function() {
			jQuery(this).attr('target', '_blank');
		}
	);
	
	if (jQuery('#leftside').outerHeight(true) < jQuery('#content').outerHeight(true)) {
		jQuery('#ld_ind_hezagolo').css({'height' : (jQuery('#content').outerHeight(true)-jQuery('#leftside').outerHeight(true))});
	} else {
		jQuery('#contdesc').css({'height' : jQuery('#leftside').outerHeight(true)-102});
	}
	
	jQuery('#md_ind_slides').slideAkc();
	
	jQuery(".rating-stars a").each(function(i) {
		jQuery(this)
			.mouseover(function() {
				jQuery(".rating-usr").css({ "display" : "none" });
				jQuery(".rating-stars a:lt("+i+")").addClass("rating-hover");
				jQuery(this).addClass("rating-hover");
			}).mouseout(function() {
				jQuery(".rating-usr").css({ "display" : "block" });
				jQuery(".rating-stars a").removeClass("rating-hover");
				jQuery(this).removeClass("rating-hover");
			});
	});
});
