/*$(document).ready(function() {
	jQuery('#carousel ul').jcarousel({
		scroll: 1
	});
	$("div.logo a").click(function(){
		alert ("Test!");
		return false;
	});
	$("body").css("background-color","red");
	
	$("ul.list-portfolio li img").hover(
		function () {
			//$(this).siblings("h2 a").show();
			alert("hola");
		}, 
		function () {
			$(this).children("h2 a").hide();
		}
	);
});*/

(function($) {
	/*jQuery('#carousel ul').jcarousel({
		scroll: 1
	});*/
	/*$("div.logo a").click(function(){
		alert ("Test!");
		return false;
	});*/

	$("ul.list-portfolio li").hover(
		function () {
			$(this).find("h2 a").slideDown('fast');
		}, 
		function () {
			$(this).find("h2 a").slideUp('fast');
		}
	);

})(jQuery);

	
;

