/**
 * Javascript: Scripts
 * 
 * Rapid Javascript development.
 * 
 * @package WP Framework
 * @subpackage JS
 */

(function($){
	$(document).ready(function($){
		
		$('.menu-item-2418>a').click(function(event) {
			
			  event.preventDefault();
			
		});
		
		$("#twitter").hover(function() {
        var height = $(this).height();
		var height2 = $(this)[0].scrollHeight;
		
		if (height2 > 16)
			{
				  $(this).animate({
						 height: height2
					}, 300);
			}
		}, function() {
			$(this).stop(true, false).animate({
				height: 16
			},150);
		});
		
		getTwitters('twitter', {
        id: '80hertz', 
        prefix: '', 
        count: 1, 
		 enableLinks: true, 
  		ignoreReplies: true, 
 		 clearContents: true,
  		template: '"%text%" <a href="http://twitter.com/80hertz" title="Follow us on Twitter">Follow...</a>'
    });

    
	
	});
	
})(jQuery);



