$(document).ready(function(){
	
	
	//Services Menu
	$('#services').click(function(){
		$(this).find('#dropdown').slideToggle();
	});
	
	$('#logo').css('cursor','pointer');
	
	$('#logo').click(function(){
			window.location='http://www.nuedgedesigns.com';
	});
	
	//TWITTER
	if('nuedgedesigns') {

			$('div.twitter').append('<div id="latestTweet"></div><!-- #latestTweet -->');

			setTimeout(function(){
			
				getTwitters('latestTweet', { 
					id: 'nuedgedesigns',
					count: 1,
					enableLinks: false,
					ignoreReplies: false,
					clearContents: true,
					template: '%text% <a href="http://twitter.com/%user_screen_name%/statuses/%id%/">%time%</a>'
				});
			
			}, 500);
		
		}
	
	// Paging
	$('#paging').center();
	
	// Stop Spamming Emails
	$('.eml').amail('(at)','(dot)');
	
	// Links
	$('.lsvc').click(function(){
		window.location=$(this).attr('link');
	});
	
	$('.thm').click(function(){
			$('.thm').removeClass('active');
			$(this).addClass('active');
			$('#lrg').html('<img src="'+$(this).attr('img')+'"/>');
	});
	
	
	
});

jQuery.fn.center = function () {
    this.css("position","absolute");
    this.css("left", ( $('#paging_con').width() - this.width() ) / 2);
    return this;
}

