//mousover images
$(function() {
	$('.rollover').hover(function() {
		var currentImg = $(this).attr('src');
			$(this).attr('src', $(this).attr('hover'));
			$(this).attr('hover', currentImg);
	}, function() {
		var currentImg = $(this).attr('src');
		$(this).attr('src', $(this).attr('hover'));
		$(this).attr('hover', currentImg);
	});
});

//prevent right click and image dragging
$(document).ready(function(){
			   
	//prevent right click
    $(document).bind("contextmenu",function(){
        return false;
    });
	
	//prevent image dragging
	$("img").mousedown(function(event){
		if (event.isDefaultPrevented) {
			event.preventDefault();
			//alert("default prevented!");
		}
	});
	
	//drop down menu
	$('#navMenu li').hover(
		function () {
			//show
			$('.twoColumns', this).stop(true, true).fadeIn("fast");

		},
		function () {
			//hide
			$('.twoColumns', this).stop(true, true).fadeOut("fast");			
		}
	);
	
});
