// JavaScript Document

$(document).ready(function() {
	// put all your jQuery goodness in here.
	
	$('.slide-container:not(.expanded) .slide-panel').hide();
	
	$('.slide-title').click(function() {
	 var slidepanel = $(this).parent('div').attr('id');
	 $('#' + slidepanel + '-slide').slideToggle();
	 $('#' + slidepanel + ' a').toggleClass('open');
	});
	
	$("#tooltip").qtip({
			position: {
				corner: {
				 tooltip: 'bottomLeft', // Use the corner...
				 target: 'topRight' // ...and opposite corner
				}
			},
			style: {
				border: {
				 radius: 5
			},
			padding: 10, 
			textAlign: 'left',
			tip: true, // Give it a speech bubble tip with automatic corner detection
			name: 'light' // Style it according to the preset 'cream' style
		}
	});
    
    $("#final_image").fancybox({
        'overlayOpacity'    :    0.8,
        'overlayColor'    :    '#000',
        'centerOnScroll'    :    true,
        'titleShow'        :    false
    });
    
    $(".classified-link").fancybox({
        'padding'    :    0,
        'overlayOpacity'    :    0.8,
        'overlayColor'    :    '#000',
        'centerOnScroll'    :    true,
        'autoDimensions'    :    false,
        'width'    :    775,
        'height'    :    594,
        'titleShow'        :    false
    });
    
    $(".shop-link").fancybox({
        'padding'    :    0,
        'overlayOpacity'    :    0.8,
        'overlayColor'    :    '#000',
        'centerOnScroll'    :    true,
        'autoDimensions'    :    false, 
        'width'    :    775, 
        'height'    :    'auto',   
        'titleShow'        :    false
    });
 
 
	//$("h1, h2, h3, h4").ieffembedfix();
	
});
