$(document).ready(function(){
						   
	/***********************************************
	Funtions Main Menu
	***********************************************/
	var curLoc = window.location.pathname;
	
	$('#hdrNav a').each(function(){
		var curUrl = $(this).attr('href');
		
		if(curUrl == curLoc){
			$(this).parent().addClass('currentParent');
		}else{
			$(this).parent().removeClass('currentParent');
		};
	});
	
	/***********************************************
	Twitter / Loading the tweets
	***********************************************/
	$('#twitter_update_list').cycle({ 
    fx:     'fade', 
    speed:  'fast', 
    timeout: 8000, 
    next:   '#tweetNext', 
    prev:   '#tweetPrev' 
	});
	
})
