// JavaScript Document

$(function() {
	/* Turns on JQuery Tab UI*/
	$("#tabs").tabs();
	//$("#tabs").tabs({spinner: '', fx: {duration: 'fast' ,opacity: 'toggle'},cache: true});
	
	/* JQuery fade in Page content in <DIV>*/
	$("#Content_RHColumn, #Content_RHColumn2, #Content_JqueryUI_Tabs").hide().fadeIn(400);

	/* Contact_btn Sitewide main Navigation menu Jquery Effects */
	$("#pageMenu li").css({'height':'18px','padding':'3px', 'margin':'0px 1px 0px 1px', 'line-height': '15px'});
	$(".contact_btn").css({'background-image':'url(img/bg-2up.jpg)', 'font-weight' : 'bolder', 'color' : '#000000', 'height':'18px'});
	$(".contact_btn a").css({'font-weight' : 'bolder', 'color' : '#000000' }); //'padding':'3px', 'margin-top':'3px'
	$(".contact_btn").hover(function () {
	      $(this).css({'background-image':'url(img/bg-2over.jpg)','font-weight' : '', 'color' : 'rgb(0,40,244)'});
	      $(".contact_btn a").css({'font-weight' : 'bolder', 'color' : '#336699'});
	 }, function () {
	      var cssObj = {
		'background-image':'url(img/bg-2up.jpg)', 'font-weight' : 'bold', 'font-family':  'Geneva, Arial, Helvetica, sans-serif'
	      }
	      $(this).css(cssObj);
	      $(".contact_btn a").css({'font-weight' : 'bolder', 'color' : '#000000'});
	    });
	
	/* RequestInfo_btn on index.php Jquery Effects */
	$("#rollover_btn li a").css({'font-family':  'Geneva, Arial, Helvetica, sans-serif', 'font-size' : '11px','font-weight' : 'bold','color' : '#000000'});
	$("#rollover_btn li a").hover(function () {
	      $(this).css({'background-image':'url(img/bg-2over.jpg)','font-weight' : 'bold', 'color' : '#336699'});
	 }, function () {
	      var cssObj = {
		'background-image':'url(img/img/bg-2up.jpg)', 'font-weight' : 'bold', 'color' : '#000000'
	      }
	      $(this).css(cssObj);
	    });
	
});

    $('#test').click(function() { 
     
        $.blockUI({ 
            theme:     true, // true to enable jQuery UI support 
            draggable: true, // draggable option is only supported when jquery UI script is included 
            title:    'This is your title', // only used when theme == true 
            message:  '<p>This is your message.</p>', 
            timeout:   3000  // close block after 3 seconds (good for demos, etc) 
        }); 
     
    }); 

///* Jquery Popup Lightbox - Site wide */
$(function() {
	// Use this example, or...
	//$('.contentImage a[@rel*=Bentgls]').lightBox(); // Select all links that contains lightbox in the attribute rel 
	$('.contentImage a[rel*=AntiRefgls]').lightBox(); // Select all links that contains lightbox in the attribute rel
	$('.contentImage a[rel*=Bentgls]').lightBox();
	$('.contentImage a[rel*=Billetgls]').lightBox(); // Select all links that contains lightbox in the attribute rel
	$('.contentImage a[rel*=ColoredLamgls]').lightBox(); // Select all links that contains lightbox in the attribute rel
	$('.contentImage a[rel*=CustomLamgls]').lightBox(); // Select all links that contains lightbox in the attribute rel
	$('.contentImage a[rel*=Hurricanegls]').lightBox(); // Select all links that contains lightbox in the attribute rel
	$('.contentImage a[rel*=Soundgls]').lightBox(); // Select all links that contains lightbox in the attribute rel
	$('.contentImage a[rel*=Texturedgls]').lightBox(); // Select all links that contains lightbox in the attribute rel
	$('#gallery a[rel*=Viewcol]').lightBox(); // Select all links that contains lightbox in the attribute rel
	// This, or...
	//$('#gallery a').lightBox(); // Select all links in object with gallery ID
	//$('#gallery a').lightBox();
	//$('.contentImage').lightBox();
	// This, or...
	//$('a.lightbox').lightBox(); // Select all links with lightbox class
	// This, or...
	//$('a').lightBox(); // Select all links in the page
	// ... The possibility are many. Use your creative or choose one in the examples above
});



	 