jQuery.noConflict();
jQuery(document).ready(function() {
	
	// L2 Navigation
	jQuery('li.parent').mouseover(function() {
		jQuery(this).children('ul').show();
	});
	jQuery('li.parent').mouseout(function() {
		jQuery(this).children('ul').hide();
	});
	
	// Rounded Corners:
	// To set corner: Top Left = tl, Bottom Left = bl, etc...
	jQuery('div#bd-wrapper').corner();
	jQuery('div.col2-left-layout').corner();
	jQuery('div.col2-right-layout').corner();
	jQuery('div#bd-splash').corner();
	jQuery('div#gt1').corner('tl bl');
	jQuery('div#gt1 a').corner('bl');
	jQuery('div#gt4').corner('tr br');
	jQuery('div#gt4 a').corner('br');
	jQuery('#bd-buynow a').corner();
	
	// Fancybox 
	jQuery("a[rel='fancybox']").fancybox();
	
	jQuery('a.fancybox').fancybox({
				'autoScale'		: false,
				'transitionIn'	: 'none',
				'transitionOut'	: 'none',
				'title'			: this.title,
				'width'			: 640,
				'height'		: 480,
				'type'			: 'iframe'
			});
	
	jQuery('a.fancyboximage').fancybox();
	
	var pathname = window.location.pathname;
	jQuery('div#sideNav').find('a').each(function(){
		if (jQuery(this).attr('href') == pathname) jQuery(this).addClass('nav_on');
	});
	
});
