$(document).ready(function() {
	
	/*$(".portfolio_carusel1").jCarouselLite
		({
			btnNext: "a#right1",
			btnPrev: "a#left1",
			visible: 1,
			speed: 1200
		});*/
	var portfolioCounter=0;
	$(".portfolio_carusel1").each(function(){
		var leftBtn=$(this).siblings('.small_info').find('.button_left');
		var rightBtn=$(this).siblings('.small_info').find('.button_right');
		$(this).jCarouselLite
		({
			btnNext: rightBtn[0],
			btnPrev: leftBtn[0],
			visible: 1,
			speed: 1200
		});
	});
	$(document).ready(function(){
		$("a.prettyphotovid").prettyPhoto({
			theme:'dark_rounded',
			padding: 20,
			opacity: 0.8,
			showTitle:1
		});
	});
});