// JavaScript Document
			$(document).ready(function(){

				$("a[rel='samples']").colorbox({slideshow:false});
$("a[rel='bro']").colorbox({slideshow:false});				
$("a[rel='jlj']").colorbox({slideshow:false});
				$("a[rel='mlf']").colorbox({slideshow:false});
				$("a[rel='psa']").colorbox({slideshow:false});
              	$("a[rel='rwas']").colorbox({slideshow:false});
				$("a[rel='ill']").colorbox({slideshow:false});
				$("a[rel='lmbws']").colorbox({slideshow:false});
				//Example of preserving a JavaScript event for inline calls.
				$("#click").click(function(){ 
					$('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
					return false;
				});
			});
        
        $(document).ready(function(){
 			$('a[href*=#]').click(function() {
    			if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
    			&& location.hostname == this.hostname) {
    		 	var $target = $(this.hash);
      			$target = $target.length && $target
      			|| $('[name=' + this.hash.slice(1) +']');
      			if ($target.length) {
        			var targetOffset = $target.offset().top;
        			$('html,body')
        			.animate({scrollTop: targetOffset}, 1000);
       				return false;
      				}
    			}
  			});
		});
