$(document).ready(function(){


		jQuery('#social').superfish({
             autoArrows: false,
             speed: 100,
             delay: 250,
             pathClass: 'here',
             dropShadows: false
         });

       	$('#feed').rssfeed('http://lilithwork.wordpress.com/feed/', {
       		limit: 1
       	});

		$("#twitter").getTwitter({
			userName: "lilithwork",
			numTweets: 5,
			loaderText: "Loading tweets...",
			slideIn: true,
			slideDuration: 750,
			showHeading: false,
			headingText: "Latest Tweets",
			showProfileLink: false,
			showTimestamp: false
		});


	$("a[rel^='prettyPhoto']").prettyPhoto();
    
    $('#vimeo li')
    	.mouseover(function(){
    		$(this).stop().animate(
    			{backgroundColor:"#FFF"}, 
    			{duration:1000})
    		})
    	.mouseout(function(){
    		$(this).stop().animate(
    			{backgroundColor:"#efefef"}, 
    			{duration:300})
    		})
    		
    		
});








