jQuery.noConflict();

jQuery(document).ready(function($){
	jQuery('div.exImage').mouseover(function() {
		jQuery(this).addClass('colorIt');
	}).mouseout(function() {
		jQuery(this).removeClass('colorIt');
	});

	jQuery('a.pageOne').click(function() {
		jQuery('#prodCatalogue2').hide();
		jQuery('#prodCatalogue1').show();
	});
	jQuery('a.pageTwo').click(function() {
		jQuery('#prodCatalogue1').hide();
		jQuery('#prodCatalogue2').show();
	});

	
	jQuery(function() {
		jQuery('a.lightbox').lightBox({
			overlayBgColor: '#333',
			imageLoading:	'images/lightbox-ico-loading.gif',
			imageBtnPrev:	'images/lightbox-btn-prev.png',
			imageBtnNext:	'images/lightbox-btn-next.png',
			imageBtnClose:	'images/lightbox-btn-close.png'
		});
	});
});

jQuery(function(){
	jQuery("#myAccount").accordion({
			header: "div.subTitleBar",
			autoHeight: true,
			navigation: true,
			collapsible: false,
			event: "click",
			active: 1
		});
});

//getter
var active = jQuery( "#myAccount" ).accordion( "option", "active" );
//setter
jQuery( "#myAccount" ).accordion( "option", "active", 1 );
