// JavaScript Document

$(document).ready(function() {
$('.rounded').corners();
$('.whitespace').corners();
$('#about_drop').hide();
$('#womens_drop').hide();
$('#mens_drop').hide();
$('#patient_drop').hide();
$('#forum_drop').hide();
$('#shop_drop').hide();



						   
$(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);
    });
	
	
	$('.accordion .head').click(function() {
		$(this).next().toggle('slow');
		return false;
	}).next().hide();



$('.item').hover(
				 function(){
					 $(this).addClass('item_alt');
				 },
				 function(){
					 $(this).removeClass('item_alt');
				 }
				 );
$('.itemsoon').hover(
				 function(){
					 $(this).addClass('item_alt');
				 },
				 function(){
					 $(this).removeClass('item_alt');
				 }
				 );

$('.rollink').hover(
				 function(){
					 $(this).addClass('rollinkalt');
				 },
				 function(){
					 $(this).removeClass('rollinkalt');
				 }
				 );
				 



$('#about').mouseover(
				 function(){
					$('#about_drop').show();
$('#womens_drop').hide();
$('#mens_drop').hide();
$('#patient_drop').hide();
$('#forum_drop').hide();
$('#shop_drop').hide();
				 }
				 );


$('#about_drop').mouseleave(
				 function(){
					 $('#about_drop').hide('fast');
				 }
				 );
				 
$('#forum').mouseover(
				 function(){
					$('#about_drop').hide();
$('#womens_drop').hide();
$('#mens_drop').hide();
$('#patient_drop').hide();
$('#forum_drop').show();
$('#shop_drop').hide();
				 }
				 );


$('#forum_drop').mouseleave(
				 function(){
					 $('#forum_drop').hide('fast');
				 }
				 );



$('#mens').mouseover(
				 function(){
					$('#about_drop').hide();
$('#womens_drop').hide();
$('#mens_drop').show();
$('#patient_drop').hide();
$('#forum_drop').hide();
$('#shop_drop').hide();
				 }
				 );


$('#mens_drop').mouseleave(
				 function(){
					 $('#mens_drop').hide('fast');
				 }
				 );

$('#patient').mouseover(
				 function(){
					$('#about_drop').hide();
$('#womens_drop').hide();
$('#mens_drop').hide();
$('#patient_drop').show();
$('#forum_drop').hide();
$('#shop_drop').hide();
				 }
				 );


$('#patient_drop').mouseleave(
				 function(){
					 $('#patient_drop').hide('fast');
				 }
				 );

$('#shop').mouseover(
				 function(){
					$('#about_drop').hide();
$('#womens_drop').hide();
$('#mens_drop').hide();
$('#patient_drop').hide();
$('#forum_drop').hide();
$('#shop_drop').show();
				 }
				 );


$('#shop_drop').mouseleave(
				 function(){
					 $('#shop_drop').hide('fast');
				 }
				 );

$('#womens').mouseover(
				 function(){
					 $('#about_drop').hide();
$('#womens_drop').show();
$('#mens_drop').hide();
$('#patient_drop').hide();
$('#forum_drop').hide();
$('#shop_drop').hide();
				 }
				 );


$('#womens_drop').mouseleave(
				 function(){
					 $('#womens_drop').hide('fast');
				 }
				 );

$('#faq').mouseover(
				 function(){
					 $('#about_drop').hide();
$('#womens_drop').hide();
$('#mens_drop').hide();
$('#patient_drop').hide();
$('#forum_drop').hide();
$('#shop_drop').hide();
				 }
				 );

$('#search').mouseover(
				 function(){
					$('#about_drop').hide();
$('#womens_drop').hide();
$('#mens_drop').hide();
$('#patient_drop').hide();
$('#forum_drop').hide();
$('#shop_drop').hide();
				 }
				 );
				 
			$('#resources').click(
				 function(){
					 alert("Check back soon for updates.");
				 }
				 );
				 
				 	$('.itemsoon').click(
				 function(){
					 alert("Check back soon for updates.");
				 }
				 );

});
});
