﻿$(document).ready(function(){
		
	var p_height      = $("#content #editorial p").height();	
	$("#content #editorial p").hide();
	$("#content #title_editorial .close").hide();
	$("#content #title_editorial .open").show();
	
	$("#scroller_news").simplyScroll({
		className: 'recent_articles',
		horizontal: false,
		frameRate: 50,
		speed: 3
	});
	
	$('.article_cont .auto-submit-star').rating();
	
	
	
	$("#content #title_editorial .close").click(function(){
		$("#content #editorial p").slideUp(300);
		$("#content #title_editorial .close").hide();
		$("#content #title_editorial .open").show();
		$(".recent_articles").animate({'height':'545px'},300);
	});
	$("#content #title_editorial .open").click(function(){
		$("#content #editorial p").slideDown(300);
		$("#content #title_editorial .close").show();
		$("#content #title_editorial .open").hide();
		$(".recent_articles").animate({'height':545-20-p_height+'px'},300);
	});		
	
	
	$("#scroller_products").simplyScroll({
		className: 'products_list',
		horizontal: true,
		frameRate: 50,
		speed: 6
	});	
});
