// JavaScript Document

var $j = jQuery.noConflict();

jQuery(document).ready(function(){

 
	
  //----------------------- Menu dropdown -------------------
  
  // get the element and call it link
  var link = $j('a.rightnav');

  
  // when you click on it do some functions
  link.click(function(){
    // show the menu
    link.next('ul').slideToggle();
    
  });
  //luanch lightbox to show enlagred version of membership benefits

  
  //JqueryUI interface date pop-up - date format changed for mysql insertion purposes
	$j(function() {
	  $j( "#date_jobsboard" ).datepicker({ dateFormat: 'yy-mm-dd' });
	});

  
		
  //----------------------- jTweets Anywhere Plugin -------------------

$j('#tweetFeed').jTweetsAnywhere({
		searchParams: ['q=UACES2011'],
        count: 4,
        showTweetBox: { label: '<span style="color: #D1C7BA">Spread the word ...</span>' 
		}
    });

  
});

  




