$(document).ready(function() {
  
	if($('body').attr('id')=='home'){
		$('#placeholder img').hide();
		var _images = ["http://www.justcruizinclothing.co.uk/images/mainimage.png","http://www.justcruizinclothing.co.uk/images/mainimage1.png","http://www.justcruizinclothing.co.uk/images/mainimage2.png"];
		i=0;
		$.each(_images,function(e){
			$(new Image()).load(function(){
				i++;
				if(i==2){
					$('#placeholder').append('<img src="images/mainimage1.png" alt="Ladies wearing cool summer beach wear" width="622" height="423" /><img src="images/mainimage2.png" alt="Ladies wearing cool summer beach wear" width="622" height="423" />');
					$('#placeholder').cycle({ 
						fx: 'fade', 
						speed: 2000, 
						timeout: 6000
					});
				}
			}).attr('src',this);
		});
	}
	 
	 
	 $('#columntwo h3 a').click(function(event) {
		 var drawer=$(this).parent('h3').next('div');
   	 $(drawer).slideToggle(300);
		 $(this).toggleClass('collapsed');
		 return false;
   });
	
	
	if($('#productbox ul.swatch li a')) {
		$('#productbox ul.swatch li em').addClass('hide');
		
		if(!$.browser.version < 8 ) {
			$("#productbox ul.swatch li a").hover(function() {
				$(this).children("em").removeClass('hide');
			}, function() {
				$(this).children("em").addClass('hide');
			});
		}
	}
	
	if($('#registerform label em')) {
		$('#registerform label em').addClass('hide');
		
		if (!$.browser.version < 8 ) {
			$("#registerform label").hover(function() {
				$(this).children("em").removeClass('hide');
			}, function() {
				$(this).children("em").addClass('hide');
			});
		}
	}
	
	$("#register").focus(function() {
		$(this).css({'background-image' : 'none'});
	}).blur(function() {
		if( !this.value.length ) {
			$(this).css({'background-image' : 'url(images/enteremail.gif)'});
			$(this).value = $(this).defaultValue;
		}
	});
	
	
	
	
	
});