// SLIDER HOMEPAGE //
$(document).ready(function(){
	$("#slider").jFlow({
		slides: "#slider_img",
		controller: ".jFlowControl", // must be class, use . sign
		slideWrapper : "#jFlowSlide", // must be id, use # sign
		selectedWrapper: "jFlowSelected",  // just pure text, no sign
		width: "940px",
		height: "228px",
		easing: "swing",
		duration: 400,
		prev: ".jFlowPrev", // must be class, use . sign
		next: ".jFlowNext" // must be class, use . sign
	});
});



// DROPDOWN MENU EFFECT //
	$(document).ready(function() {
		$("#portfolio").hover(function() {
			$('#portover').addClass("hover").stop()
		}, function() {
		$('#portover').removeClass("hover").stop()
	});
	});
	$(document).ready(function() {
	$("#portfolio li").hover(function() {	//On hover...
		$(this).find("span").stop().animate({ 
			marginLeft: "10" //Find the span tag and move it up 40 pixels
		}, 250);
	} , function() { //On hover out...
		$(this).find("span").stop().animate({
			marginLeft: "0" //Move the span back to its original state (0px)
		}, 250);
	});
	});



// TWITTER DISPLAY // 
    getTwitters('loverTweets', {
        id: 'annas_eyes', 
        prefix: '',  // If you want display your avatar and name <img height="16" width="16" src="%profile_image_url%" /><a href="http://twitter.com/%screen_name%">%name%</a> said:<br/>
        clearContents: false, // leave the original message in place
        count: 1, 
        withFriends: true,
        ignoreReplies: false,
        newwindow: true
    });
	
