// JavaScript Document
//$("a[rel^='prettyPopin']:eq(0)").prettyPopin({width: 850,followScroll:false});
	//$("a[rel^='prettyPopin']:eq(1)").prettyPopin({width:850});

$(document).ready(function(){
		$("a[rel^='prettyPopin']").prettyPopin({
			modal : true, /* true/false */
			width : 750, /* false/integer */

			opacity: 0.7, /* value from 0 to 1 */
			animationSpeed: 'fast', /*
			slow/medium/fast/integer */
			followScroll: false, /* true/false */
			loader_path: './search/img/loader.gif', /* path to your loading image */
			callback: function(){
			} /* callback called when closing the popin */
		});

	});
	
	




