$(document).ready(function() { $(".block-outer").corner("round 4px").parent().css("padding", "1px").corner("round 6px"); $(".block-inner").corner("round 6px").parent().css("padding", "1px").corner("round 6px"); $(".jump-store-bg-outer").corner("round 4px").parent().css("padding", "1px").corner("round 6px"); $(".jump-store-bg-inner").corner("round 6px").parent().css("padding", "1px").corner("round 6px"); $(".store-desc-outer").corner("round 6px").parent().css("padding", "1px").corner("round 6px"); $(".store-desc-inner").corner("round 6px").parent().css("padding", "2px").corner("round 6px"); $(".latest-deals-block-outer").corner("round 6px").parent().css("padding", "0px").corner("round 6px"); $(".latest-deals-block-inner").corner("round 6px").parent().css("padding", "2px").corner("round 6px"); $(".gen-round-outer").corner("round 6px").parent().css("padding", "1px").corner("round 6px"); $(".gen-round-inner").corner("round 6px").parent().css("padding", "2px").corner("round 6px"); $("input[name=search_query]").focus(function() { this.value = "" }); $.fn.inputclear = function() { return this.focus(function() { if(this.value == this.defaultValue) { this.value = "" } }).blur(function() { if(!this.value.length) { this.value = this.defaultValue } }) }; $("#email_ajax").inputclear(); $("#inputString").inputclear(); $("input[name=search_query]").inputclear(); $(".prd_cat_cont").hide(); $(".prd_det_cont").hide(); $(".prd_imgurl_cont").hide(); $(".prd_img_hd").click(function() { $(".prd_img_cont").slideDown(); $(".prd_imgurl_cont").hide() }); $(".prd_imgurl_hd").click(function() { $(".prd_img_cont").slideUp(); $(".prd_imgurl_cont").slideDown() }); $(".prd_det_hd").click(function() { $(".prd_det_cont").slideDown(); $(".prd_cat_cont").slideUp() }); $(".prd_cat_hd").click(function() { $(".prd_cat_cont").slideDown(); $(".prd_det_cont").slideUp()  }); $(".bnr_imgurl_cont").hide(); $(".bnr_img_hd").click(function() { $(".bnr_img_cont").slideDown(); $(".bnr_imgurl_cont").hide() }); $(".bnr_imgurl_hd").click(function() { $(".bnr_img_cont").slideUp(); $(".bnr_imgurl_cont").slideDown() }); $.fn.guestalert = function() { $(this).mouseover(function() { var a = "msg-" + $(this).attr("id"); a = document.getElementById(a); $(a).css("visibility", "visible") }); $(this).mouseout(function() { $(".guestalert").css("visibility", "hidden") }) }; $(".ovalbutton").guestalert() });