// Hover for portfolio caption:

$(function() {
		$('div.picture').hover(function(){
			$(this).find('div.caption').animate({top:'-35px'},{queue:false,duration:200});
		}, function(){
			$(this).find('div.caption').animate({top:'5px'},{queue:false,duration:200});
		});
		$('div.picture_2').hover(function(){
			$(this).find('div.caption').animate({top:'-35px'},{queue:false,duration:200});
		}, function(){
			$(this).find('div.caption').animate({top:'5px'},{queue:false,duration:200});
		});
});

$(function(){
	$("span.show_jquery_fd").click(function () {
		$("div.show_jquery_fd").slideDown(500);
	});
});

$(function() {
	$(".lightbox").lightbox()
});

// $(document).ready(function() { 
// $("div.csc-sitemap ul").find("li:first").addClass('first');
// $("div.csc-sitemap ul").find("li:last-child").addClass('last');
// });
