I have a jQuery plugin conflict in Wordpress which I need some help with. On my test page at: http://timbaggaley.co.uk/test/ I have installed the Easy Fancybox plugin for image and video presentation. It worked fine until I installed the jQuery backstretch plugin using code posted into a Javascript adder widget. I'm guessing my problem is the call on multiple libraries and I need to use noConflict. I have amended my code to:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="http://www.timbaggaley.co.uk/js-includes/jq_backstretch/jquery.backstretch.js"></script>
<script type="text/javascript">
var $j = $.noConflict();
$j(document).ready(function() {
$j.backstretch("http://timbaggaley.co.uk/backstretch/pic4.jpg", {speed: 150});});
</script>
The backstretch still works but the Fancybox still does not. I am a complete programming novice and I have read as much of the jQery noConflict advice as I can find but cannot figure it out. Can anyone help me with some copy 'n' paste idiot-proof guidance on how to implement the noconflict trick into my website?
Thanks Tim, London

http://timbaggaley.co.uk/test/wp-includes/js/jquery/jquery.js?ver=1.4.4andhttp://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js– Tim Büthe Jun 30 '11 at 9:23