
$(document).ready(function() {
	

	$('a[name="genderFilter"]').removeAttr('class');
	//select all the a tag with name equal to modal
    $('a[name="genderFilter"]').click(function(e) {
        //Cancel the link behavior
        e.preventDefault();
        $.cookie('gender', $(this).attr('id'));        
        location.reload();
     });
     
     if ($.cookie('gender') == null)  {
		$('.filter #0').addClass('active');
     }
     else{
		$('.filter #' + $.cookie('gender')).addClass('active');     
     }
     
     
     $('.productHelp').click(function(e) {
		e.preventDefault();
        newWin = window.open('DocumentWindow.aspx?did=12', '_blank', 'width=800,height=800,top=1,left=1,scrollbars=yes,resizable=no,status=no,toolbar=no,location=no,menubar=no');
		newWin.focus();
		return false;
     });
	                   
	
});