$(window).load(function()
{
	init_slideshow()
})

init_slideshow = function()
{
	$('#slides').cycle({fx:'fade'})
}



$(document).ready(function() {
	$('#clothing').bind("mouseenter",function(){
		$('#drop-down').show();
	}).bind("mouseleave",function(){
		$('#drop-down').hide();
	});
	$('#custom').bind("mouseenter",function(){
		$('#drop-down2').show();
	}).bind("mouseleave",function(){
		$('#drop-down2').hide();
	});
});
