jQuery.noConflict();

jQuery(function($){
	
	$('.hidshow_samplesimg').click(function(e){
		
		e.preventDefault();
		
		$('.sampleprod_img').toggle();
		
	});
	
	var parent;
	
	$('.inv_table li span').click(function() {
		
		$('.inv_brands').hide();
		parent = $(this).parent();
	
		$('.inv_brands', parent)
			.css('position', 'absolute')
			.css('top', '0px')
			.css('left', '400px')
			.css('list-style', 'none');
		$('.inv_brands', parent).show();
	
	});
	
	$('#jocl_link').click(function(e){
		e.preventDefault();
		$().interstitial('open', {
			'url': '/index.php?app=ecom&ns=coupon_list',
			'width': 220,
			'height': 205
		});
	});
	
	var joclEmail;
	var joclNews;
	
	$('.jocl_submit').live('click', function(e){
		e.preventDefault();
		$.cookie('SEEN_COUPONS', '1', { expires: 31 });
		joclEmail = $('.jocl_emailinput').val();
		joclNews = $('.jocl_box').val();
		if(joclEmail != '' && joclEmail.search(/\b[\w\.-]+@[\w\.-]+\.\w{2,4}\b/) != -1) {
			$.ajax({
				url: 'index.php?app=ecom&ns=coupon_listp',
				type: 'get',
				data: 'email='+joclEmail+'&newsletter='+joclNews,
				success: function(r) {
					$('.jocl_holder').html(r);
				}
			});
		}
	});
	
	$('.jocl_close').live('click', function(e){
		e.preventDefault();
		$.cookie('SEEN_COUPONS', '1', { expires: 31 });
		$().interstitial('close');
	});
	
	if($.cookie('SEEN_COUPONS') != '1') {
		$().interstitial('open', {
			'url': '/index.php?app=ecom&ns=coupon_list',
			'width': 220,
			'height': 205
		});
	}
	
	$('#ecom--coform--customone--1').attr('checked','checked');
	
	
	

});
