//var j = jQuery.noConflict;
	
$(document).ready(function(){	
	//krosz brózer opacity
	$('selector').css('opacity', 0.9);

	$('option:odd').addClass('odd');
	
	
	//menu jelolo
	$(function(){
		var path = location.pathname.substring(1);
		if ( path )
		$('ul#nav li a[href$="' + path + '"]').attr('class', 'current');
	});
	
	//nyitogatás
	$('ul#nav li').hover(function(){
	  $(this).children('ul').show();
	}, function() {
	  $(this).children('ul').hide();
	});
	
	//egész doboz click
	$('div.sablon').click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	});
});
