var Index ={
	init : function(){
		swfobject.embedSWF(Core.webView+"flash/textbox2.swf", 'indexFlash', "300", "45", "9.0.0", false, {tekst:  $.trim($('#line1').html()),tekst2:$.trim($('#line2').html())},{salign:"lt",wmode:"transparent"});
	},
	
	index : function(){

		window.setInterval(function() {
			var active = $('.pager .active').children().attr('id').replace('p_','');
			if(parseInt(active) == $('.pager a').length)
				active = 1;
			else
				active++;
			$('#p_'+active).click();
		}, 10000);



		$('.pager a').click(function(){
			$('.pager .active').removeClass('active');
			$(this).parent().addClass('active');
			
			$.post(Core.webHost+'index_ajax,details.html', 'id='+$(this).attr('id').replace('p_',''), function(data){
				
				$('#text_short').html(data.text_short);
				$('#product_details').attr('href', data.url);
				$('#contentTop').css('background','url('+Core.webHost+'upload/products/'+data.id+'.png) no-repeat left');
				swfobject.embedSWF(Core.webView+"flash/textbox2.swf", 'indexFlash', "300", "45", "9.0.0", false, {tekst:data.line1,tekst2:data.line2},{salign:"lt",wmode:"transparent"});

			}, 'json');

			return false;
		})
	}
}
