$(document).ready(function(){
	$(".worklists").click(function(){
		$(".worklists").each(function(){
			$(this).children().attr("src","/__i/1.gif");
		});
		$(this).children().attr("src","/$files/img/orangeborder.gif");
		$("#workcontainer").children().attr("src", $(this).children().attr("rel"));
		
		$("#workcontainer").css("backgroundImage","url('" + $(this).children().attr("rel") + "')");
		var item = $(this);
		$(".bigcar").fadeOut(300, function(){
			$(".bigcar").attr("src",$(item).attr("rel"));
			$(".bigcar").fadeIn(100);
		});
	});
	
	
	
	$("#workslidercontainer").scrollable({
		api:true,
		circular: false,
		next: ".nextpic",
		prev: ".previouspic",
		speed: 600,
		clickable: false,
		onBeforeSeek: function(event, i) {
			
		}
	});
	
	$(".downikcursor").click(function(){
		if($(this).attr("src").indexOf("downik") > 0){
			$("#block_" + $(this).attr("id")).slideDown(600);
		$(this).attr("src","/$files/img/upnik.gif");
		} else {
			$("#block_" + $(this).attr("id")).slideUp(600);
			$(this).attr("src","/$files/img/downik.gif");
		} 
	});
});
