/* Author: 

*/
jQuery(document).ready(function(){

	$('#women').hover(function () {
		$('#women h3').fadeIn('slow');
	},
	function () {
		$('#women h3').fadeOut('slow');
	});

	$('#men').hover(function () {
		$('#men h3').fadeIn('slow');
	},
	function () {
		$('#men h3').fadeOut('slow');
	});

	$('#women').click(function() {
		window.location="/models/women";
	});
	$('#men').click(function() {
		window.location="/models/men";
	});

});

