$(document).ready(function() {

//	$("#cycle").cycle({
//		fx: "fade"
//	});

//	$("figure.gallery-item a").attr("rel","gallery");
//	$("figure.gallery-item a[rel='gallery']").fancybox();
    jQuery('#shipform .shipmethod').click(function(){
        var url = "http://www.simplicitydecor.com/shop/checkout/";
        window.location.href= url + '?sm=' +jQuery(this).val();
    });
    
    jQuery('#cart a.right.button').click(function(){
        if( jQuery('#shipping-postcode').val().length != 5 ){
            jQuery('.error').show();
            return false;
        }
    });
    jQuery('#shipping-postcode').keyup(function(){
        if(jQuery(this).val().length == 5){
            jQuery('#cart').submit();
        }
    });
});

