$(document).ready(function(){
		//custom search form	
		$('DIV.search FORM').submit(function(){
			var cleantitle = $(this).attr('id').split('genre_').join('');
			window.location = 'http://www.districtlines.com/' + cleantitle + '/search/' + $('DIV.search FORM INPUT[@name=search]').val().replace(/ /g,'+');
			return false;
		});
		
		
		//apply ifixpng to all png images
		$('img[@src$=.png]').ifixpng(); 
});

